diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-02-08 14:29:52 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-02-08 14:29:52 +0000 |
commit | 012d99b0bf02370c4d1d72a00cb311f4fedb1511 (patch) | |
tree | 6763fce4e9cc14af01ebfbe5c18b79f028ac8e68 /image.c | |
parent | [w3m-dev 03022] SSL certificates of frame body (diff) | |
download | w3m-012d99b0bf02370c4d1d72a00cb311f4fedb1511.tar.gz w3m-012d99b0bf02370c4d1d72a00cb311f4fedb1511.zip |
[w3m-dev 03025] fix image loading on EWS4800
* image.c (loadImage): exit if symlink failed
exit if fopen failed
From: Yoshinobu Sakane <sakane@d4.bsd.nes.nec.co.jp>
Diffstat (limited to 'image.c')
-rw-r--r-- | image.c | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: image.c,v 1.4 2002/02/04 15:18:42 ukai Exp $ */ +/* $Id: image.c,v 1.5 2002/02/08 14:29:52 ukai Exp $ */ #include "fm.h" #include <sys/types.h> @@ -494,15 +494,17 @@ loadImage(int flag) #if defined(HAVE_SYMLINK) && defined(HAVE_LSTAT) symlink(cache->file, cache->touch); if (lstat(image_lock, &st)) { - symlink(cache->file, image_lock); + if (symlink(cache->file, image_lock)) + exit(0); #else f = fopen(cache->touch, "w"); if (f) fclose(f); if (stat(image_lock, &st)) { f = fopen(image_lock, "w"); - if (f) - fclose(f); + if (!f) + exit(0); + fclose(f); #endif kill(getppid(), SIGUSR1); } |