]> granicus.if.org Git - mutt/commitdiff
Add magic comment so we can use traditional malloc() in this program.
authorThomas Roessler <roessler@does-not-exist.org>
Wed, 31 Oct 2001 09:20:19 +0000 (09:20 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Wed, 31 Oct 2001 09:20:19 +0000 (09:20 +0000)
pgpewrap.c

index 3448e64ccf227a91700009665a00e1a77b9b1fb4..81e8f801fdde07ed1b15f1d64ded4ef583b9a190 100644 (file)
@@ -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);