The paths pointer could have been NULL when going through the shared
freeing path in error case. Avoid the NULL pointer dereference by
checking whether that is the case. In addition, remove unnecessary
gotos to make the function more readable.
/* Ensure we are a GO */
if (wpa_s->wpa_state != WPA_COMPLETED)
- goto out;
+ return NULL;
ssid = wpa_s->conf->ssid;
/* At present WPAS P2P_GO mode only applicable for p2p_go */
if (ssid->mode != WPAS_MODE_P2P_GO &&
ssid->mode != WPAS_MODE_AP &&
ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION)
- goto out;
+ return NULL;
num_members = p2p_get_group_num_members(wpa_s->p2p_group);
DBUS_TYPE_OBJECT_PATH,
paths, num_members);
-out_free:
for (i = 0; i < num_members; i++)
os_free(paths[i]);
os_free(paths);
-out:
return reply;
+
out_of_memory:
reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY, NULL);
- goto out_free;
+ if (paths) {
+ for (i = 0; i < num_members; i++)
+ os_free(paths[i]);
+ os_free(paths);
+ }
+ return reply;
}