From: Till Kamppeter Date: Sun, 29 Jan 2023 00:23:20 +0000 (-0300) Subject: cupsDoRequest() response pointer does not need to get initialized X-Git-Tag: v2.4.3~58^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F599%2Fhead;p=thirdparty%2Fcups.git cupsDoRequest() response pointer does not need to get initialized --- diff --git a/scheduler/ipp.c b/scheduler/ipp.c index f048a000ee..ac1545c0e9 100644 --- a/scheduler/ipp.c +++ b/scheduler/ipp.c @@ -5392,7 +5392,7 @@ create_local_bg_thread( if (ippFindAttribute(response, "media-col-database", IPP_TAG_ZERO) == NULL) { - ipp_t *response2 = NULL; + ipp_t *response2; cupsdLogMessage(CUPSD_LOG_DEBUG, "Polling \"media-col-database\" attribute separately.");