Memory leak in ODIN1 initialization
Opened this issue · 0 comments
GoogleCodeExporter commented
if ((buf = malloc(len)) == NULL) {
//NSLog(@"ODIN-1.1: malloc error");
return nil;
}
if (sysctl(mib, 6, buf, &len, NULL, 0) < 0) {
//NSLog(@"ODIN-1.1: sysctl 2 error");
return nil;
}
if sysctl returns an error code, buf will not be released
Original issue reported on code.google.com by ixpl...@gmail.com
on 5 Feb 2013 at 7:15