mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Automated merge with ssh://mutt@dev.mutt.org/mutt

+3 -3
+3 -3
safe_asprintf.c
··· 47 47 if (n == 0) 48 48 { 49 49 /* Mutt convention is to use NULL for 0-length strings */ 50 - FREE (strp); 50 + FREE (strp); /* __FREE_CHECKED__ */ 51 51 } 52 52 53 53 return n; ··· 70 70 va_end (ap); 71 71 if (n < 0) 72 72 { 73 - FREE (strp); 73 + FREE (strp); /* __FREE_CHECKED__ */ 74 74 return n; 75 75 } 76 76 ··· 80 80 * include the terminal nul char. 81 81 */ 82 82 if (n == 0) /* convention is to use NULL for zero-length strings. */ 83 - FREE (strp); 83 + FREE (strp); /* __FREE_CHECKED__ */ 84 84 else if (n != rlen - 1) 85 85 safe_realloc (strp, n + 1); 86 86 return n;