[w3m-dev 03602] Re: w3mimgdisplay core dump

* w3mimgdisplay.c (DrawImage): check load_image, imageBuf[n].pixmap
* w3mimg/fb/fb_w3mimg.c (w3mfb_show_image): check img->pixmap
* w3mimg/x11/x11_w3mimg.c (x11_show_image): check img->pixmap
From: Hiroyuki Ito <hito@crl.go.jp>
This commit is contained in:
Fumitoshi UKAI
2002-12-25 16:14:45 +00:00
parent fcc128795d
commit d31151945a
4 changed files with 22 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: w3mimgdisplay.c,v 1.10 2002/11/27 16:46:34 ukai Exp $ */
/* $Id: w3mimgdisplay.c,v 1.11 2002/12/25 16:14:45 ukai Exp $ */
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
@@ -263,10 +263,12 @@ DrawImage(char *buf, int redraw)
imageBuf[n].pixmap = NULL;
}
w_op->load_image(w_op, &imageBuf[n], p, w, h);
if (w_op->load_image(w_op, &imageBuf[n], p, w, h) == 0)
imageBuf[n].pixmap = NULL;
draw_image:
w_op->show_image(w_op, &imageBuf[n], sx, sy, sw, sh, x, y);
if (imageBuf[n].pixmap)
w_op->show_image(w_op, &imageBuf[n], sx, sy, sw, sh, x, y);
}
void