mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
fix possible unititialized pointer usage
This commit is contained in:
parent
1923c7a9b8
commit
11716401bd
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ file_fmttime(uint64_t v, int flags, char *buf)
|
|||
{
|
||||
char *pp;
|
||||
time_t t = (time_t)v;
|
||||
struct tm *tm;
|
||||
struct tm *tm = NULL;
|
||||
|
||||
if (flags & FILE_T_WINDOWS) {
|
||||
struct timeval ts;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue