blob: 8900cb7de53831384f3474da2623c499e57c9688 [file] [log] [blame]
#include <stdlib.h>
int main(int argc, char *argv[])
{
char *pointer = 0;
pointer = malloc(64); /* Line 7 */
do
{
char *pointer2 = 0;
pointer2 = malloc(32); /* Line 13 */
} while (0);
return 0;
} /* Leak report Line 19 */