Fix compiler warning in image.c
* src/image.c (webp_load): Initialize `mask_img' to NULL.
This commit is contained in:
parent
d1a2e78b8c
commit
3db3d5a398
1 changed files with 1 additions and 1 deletions
|
@ -9059,7 +9059,7 @@ webp_load (struct frame *f, struct image *img)
|
|||
}
|
||||
|
||||
/* Create the x image and pixmap. */
|
||||
Emacs_Pix_Container ximg, mask_img;
|
||||
Emacs_Pix_Container ximg, mask_img = NULL;
|
||||
if (!image_create_x_image_and_pixmap (f, img, width, height, 0, &ximg, false))
|
||||
goto webp_error2;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue