IpConfigSample 마지막 부분에 free 개선이 필요합니다.
pNicInfo가 NULL 이므로 free 는 do nothing 중입니다.
while(pNicInfo != NULL){
/* Do somethings */
pNicInfo = pNicInfo->Next;
}
// while loop 벗어난 시점이므로 pNicInfo == NULL
free(pNicInfo); // pointer 가 NULL 이므로 free 는 donothing