From 9034726d769e5782a3bb0e71fb0333f9174aaa3b Mon Sep 17 00:00:00 2001 From: "sdagley%netscape.com" Date: Wed, 7 Oct 1998 01:32:07 +0000 Subject: [PATCH] Fix else/#else error. --- lib/htmldlgs/htmldlgs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/htmldlgs/htmldlgs.c b/lib/htmldlgs/htmldlgs.c index e265ea1728c4..3aba14dfceba 100644 --- a/lib/htmldlgs/htmldlgs.c +++ b/lib/htmldlgs/htmldlgs.c @@ -1432,9 +1432,9 @@ XP_MakeRawHTMLDialog(void *proto_win, XPDialogInfo *dialogInfo, if (titlenum == XP_SECURITY_ADVISOR_TITLE_STRING) cx = FE_MakeNewWindow((MWContext *)proto_win, NULL, XP_GetString(titlenum), &chrome); else -#else - cx = FE_MakeNewWindow((MWContext *)proto_win, NULL, NULL, &chrome); #endif + cx = FE_MakeNewWindow((MWContext *)proto_win, NULL, NULL, &chrome); + if ( cx == NULL ) { goto loser; }