mirror of
https://github.com/status-im/miniupnp.git
synced 2025-02-20 17:58:19 +00:00
AddAnyPortMapping: check against NULL
this avoids a crash in strcasecmp by passing an empty protocol argument
This commit is contained in:
parent
a613992892
commit
dedbee16b1
@ -598,7 +598,7 @@ AddAnyPortMapping(struct upnphttp * h, const char * action, const char * ns)
|
||||
if(leaseduration == 0)
|
||||
leaseduration = 604800;
|
||||
|
||||
if (!int_ip || !ext_port || !int_port)
|
||||
if (!int_ip || !ext_port || !int_port || !protocol)
|
||||
{
|
||||
ClearNameValueList(&data);
|
||||
SoapError(h, 402, "Invalid Args");
|
||||
|
Loading…
x
Reference in New Issue
Block a user