From: Art Cancro Date: Fri, 7 Nov 2014 22:22:29 +0000 (-0500) Subject: Fixed a null pointer issue X-Git-Tag: v9.01~91 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=f5e736bd90d98004e7ae0af0415b9f88b956cfff Fixed a null pointer issue --- diff --git a/citadel/modules/rssclient/serv_rssclient.c b/citadel/modules/rssclient/serv_rssclient.c index 784f34b60..f76b3c01c 100644 --- a/citadel/modules/rssclient/serv_rssclient.c +++ b/citadel/modules/rssclient/serv_rssclient.c @@ -513,7 +513,7 @@ eNextState RSSAggregator_AnalyseReply(AsyncIO *IO) SetRSSState(IO, eRSSFailure); ErrMsg = NewStrBuf(); - EVRSSC_syslog(LOG_ALERT, "need a 200, got a %ld !\n", + if (IO) EVRSSC_syslog(LOG_ALERT, "need a 200, got a %ld !\n", IO->HttpReq.httpcode); strs[0] = ChrPtr(Ctx->Url);