1

刚刚analyze在我的应用程序上运行,它抛出了这个内存错误并指向return以下代码中的行:

int                 mgmtInfoBase[6];
char                *msgBuffer = NULL;
size_t              length;
unsigned char       macAddress[6];
struct if_msghdr    *interfaceMsgStruct;
struct sockaddr_dl  *socketStruct;
NSString            *errorFlag = NULL;

mgmtInfoBase[0] = CTL_NET;        // Request network subsystem
mgmtInfoBase[1] = AF_ROUTE;       // Routing table info
mgmtInfoBase[2] = 0;
mgmtInfoBase[3] = AF_LINK;        // Request link layer information
mgmtInfoBase[4] = NET_RT_IFLIST;  // Request all configured interfaces

if ((mgmtInfoBase[5] = if_nametoindex("en0")) == 0)
    errorFlag = @"if_nametoindex failure";
else
{
    if (sysctl(mgmtInfoBase, 6, NULL, &length, NULL, 0) < 0)
        errorFlag = @"sysctl mgmtInfoBase failure";
    else
    {
        if ((msgBuffer = malloc(length)) == NULL)
            errorFlag = @"buffer allocation failure";
        else
        {
            if (sysctl(mgmtInfoBase, 6, msgBuffer, &length, NULL, 0) < 0)
                errorFlag = @"sysctl msgBuffer failure";
        }
    }
}

if (errorFlag != NULL)
{
    NSLog(@"Error: %@", errorFlag);        
    return errorFlag;                  // this line gives the memory leak warning
}

我知道的不多C,希望有人能告诉我这里发生了什么。

4

2 回答 2

4

您没有在此行中分配free缓冲区:msgBuffer

if ((msgBuffer = malloc(length)) == NULL)
于 2013-05-16T09:44:43.167 回答
3

你需要释放 msgBuffer

 if ((msgBuffer = malloc(length)) == NULL)

也许你可以在回来之前做

if (errorFlag != NULL)
{
    free (msgBuffer); // Free here
    NSLog(@"Error: %@", errorFlag); 
    return errorFlag;                  // this line gives the memory leak warning
}
于 2013-05-16T09:48:02.700 回答