From: Jon Trulson Date: Sun, 6 Apr 2014 22:48:40 +0000 (-0600) Subject: AttachArea.C: NULL is not 0, sprintf needs a format X-Git-Tag: 2.2.2~20 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b241414cda82cd1f7a833f7ce6afe3cea16814e5;p=oweals%2Fcde.git AttachArea.C: NULL is not 0, sprintf needs a format --- diff --git a/cde/programs/dtmail/dtmail/AttachArea.C b/cde/programs/dtmail/dtmail/AttachArea.C index 7f1c21ea..c4848173 100644 --- a/cde/programs/dtmail/dtmail/AttachArea.C +++ b/cde/programs/dtmail/dtmail/AttachArea.C @@ -663,7 +663,7 @@ AttachArea::addAttachment( buffer = new char[s.st_size + 1]; if (!buffer) { - sprintf(buf, + sprintf(buf, "%s", GETMSG(DT_catd, 3, 36, "Unable to allocate memory.")); helpId = DTMAILHELPNOALLOCMEM; answer = this->handleErrorDialog(GETMSG(DT_catd, 1, 83, "Mailer"), @@ -1471,7 +1471,7 @@ AttachArea::undeleteLastDeletedAttachment( Attachment *tmpAttachment; Attachment **list; - time_t time_deleted = NULL, tmpTime = NULL; + time_t time_deleted = 0, tmpTime = 0; int i; if (_deleteCount == 0) {