aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/wlan_stat_dlg.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/wlan_stat_dlg.c')
-rw-r--r--gtk/wlan_stat_dlg.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/gtk/wlan_stat_dlg.c b/gtk/wlan_stat_dlg.c
index fc1c43c82b..00c22157a6 100644
--- a/gtk/wlan_stat_dlg.c
+++ b/gtk/wlan_stat_dlg.c
@@ -237,8 +237,7 @@ alloc_wlan_ep (struct _wlan_hdr *si, packet_info *pinfo _U_)
if (!si)
return NULL;
- if (!(ep = g_malloc (sizeof(wlan_ep_t))))
- return NULL;
+ ep = g_malloc (sizeof(wlan_ep_t));
SE_COPY_ADDRESS (&ep->bssid, &si->bssid);
ep->stats.channel = si->stats.channel;
@@ -387,10 +386,9 @@ wlanstat_packet (void *phs, packet_info *pinfo, epan_dissect_t *edt _U_, const v
}
if (!te) {
- if ((te = alloc_wlan_ep (si, pinfo))) {
- te->next = hs->ep_list;
- hs->ep_list = te;
- }
+ te = alloc_wlan_ep (si, pinfo);
+ te->next = hs->ep_list;
+ hs->ep_list = te;
}
if (!te->probe_req_searched && (si->type != 0x04) && (te->type[0x04] == 0) &&