[w3m-dev 03034] check buf

* frame.c (frame_download_source): buf->ssl_certificate can be used
			only if buf != NULL && buf != NO_BUFFER
From: Fumitoshi UKAI  <ukai@debian.or.jp>
This commit is contained in:
Fumitoshi UKAI
2002-02-09 15:27:14 +00:00
parent 5d552dad99
commit 669df39333
2 changed files with 10 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: frame.c,v 1.11 2002/02/08 11:45:07 ukai Exp $ */
/* $Id: frame.c,v 1.12 2002/02/09 15:27:14 ukai Exp $ */
#include "fm.h"
#include "parsetagx.h"
#include "myctype.h"
@@ -388,7 +388,8 @@ frame_download_source(struct frame_body *b, ParsedURL *currentURL,
b->referer, flag | RG_FRAME_SRC, b->request);
#ifdef USE_SSL
/* XXX certificate? */
b->ssl_certificate = buf->ssl_certificate;
if (buf && buf != NO_BUFFER)
b->ssl_certificate = buf->ssl_certificate;
#endif
w3m_dump &= ~DUMP_FRAME;
is_redisplay = FALSE;