From: Jouni Malinen Date: Mon, 21 Dec 2009 20:32:59 +0000 (+0200) Subject: nl80211: Use couple more os_*() wrappers for allocation X-Git-Tag: hostap_0_7_1~256 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7bf127572c9a6fc7860abe64ac3720ba184a250b;p=thirdparty%2Fhostap.git nl80211: Use couple more os_*() wrappers for allocation --- diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index 4144e2219..697fefd9f 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -3050,7 +3050,7 @@ static int wpa_driver_nl80211_hapd_send_eapol( "failed: %d (%s)", (unsigned long) len, errno, strerror(errno)); } - free(hdr); + os_free(hdr); return res; } @@ -3654,8 +3654,8 @@ static void add_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx) else old = NULL; - drv->if_indices = realloc(old, - sizeof(int) * (drv->num_if_indices + 1)); + drv->if_indices = os_realloc(old, + sizeof(int) * (drv->num_if_indices + 1)); if (!drv->if_indices) { if (!old) drv->if_indices = drv->default_if_indices;