mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Merge pull request #4114 from GregorR/natt-double-free
Don't double-free net_ifinfo structure.
This commit is contained in:
commit
dd31ba3c22
@ -175,10 +175,7 @@ bool natt_open_port_any(struct natt_status *status, uint16_t port, enum socket_p
|
|||||||
if ((list = (struct net_ifinfo *) calloc(1, sizeof(struct net_ifinfo))) == NULL)
|
if ((list = (struct net_ifinfo *) calloc(1, sizeof(struct net_ifinfo))) == NULL)
|
||||||
return false;
|
return false;
|
||||||
if (!net_ifinfo_new(list))
|
if (!net_ifinfo_new(list))
|
||||||
{
|
|
||||||
free(list);
|
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
|
|
||||||
/* loop through them */
|
/* loop through them */
|
||||||
for (i = 0; i < list->size; i++)
|
for (i = 0; i < list->size; i++)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user