From: Thomas Roessler Date: Wed, 31 Oct 2001 09:20:19 +0000 (+0000) Subject: Add magic comment so we can use traditional malloc() in this program. X-Git-Tag: mutt-1-3-23-1-rel~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea35088ae14fd4ceb1afc0928900a47ac4e9b507;p=mutt Add magic comment so we can use traditional malloc() in this program. --- diff --git a/pgpewrap.c b/pgpewrap.c index 3448e64c..81e8f801 100644 --- a/pgpewrap.c +++ b/pgpewrap.c @@ -14,7 +14,7 @@ int main(int argc, char **argv) { char **opts, **opt, *pfx; int i; - opts = malloc((2 * argc + 1) * sizeof (* opts)); + opts = malloc((2 * argc + 1) * sizeof (* opts)); /* __MEM_CHECKED__ */ if(!opts) { perror(argv[0]); exit(2);