mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fixed conditional jump or move depends on uninitialised value(s)
==11551== at 0x57CB23C: xpmParseData (parse.c:702)
This commit is contained in:
parent
72b0627315
commit
6de750efb7
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
|||
|
||||
gdImagePtr gdImageCreateFromXpm (char *filename)
|
||||
{
|
||||
XpmInfo info;
|
||||
XpmInfo info = {0};
|
||||
XpmImage image;
|
||||
int i, j, k, number;
|
||||
char buf[5];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue