aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2001-11-27 04:45:28 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2001-11-27 04:45:28 +0000
commit757846c940e184718d903aa2d3c6dc0dc2670aed (patch)
treeda6342b869ac3f53c215f915cb58f448e89731e7 /main.c
parent2001-11-27 aito@fw.ipsj.or.jp (diff)
downloadw3m-757846c940e184718d903aa2d3c6dc0dc2670aed.tar.gz
w3m-757846c940e184718d903aa2d3c6dc0dc2670aed.zip
[w3m-dev 02572] _peekURL() bug
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/main.c b/main.c
index fa26c59..c243939 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.23 2001/11/24 02:01:26 ukai Exp $ */
+/* $Id: main.c,v 1.24 2001/11/27 04:45:28 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -3768,8 +3768,10 @@ _peekURL(int only_img)
a = retrieveCurrentImg(Currentbuf);
if (a == NULL) {
a = retrieveCurrentForm(Currentbuf);
- if (a == NULL)
+ if (a == NULL) {
+ s = NULL;
return;
+ }
s = Strnew_charp(form2str((FormItemList *)a->url));
goto disp;
}