mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-21 12:54:26 -04:00
suppressed uninitialized memory read
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2765 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
695226301a
commit
0d533d14b1
1 changed files with 5 additions and 2 deletions
|
@ -256,8 +256,11 @@ bool upnphandler::shutdown_upnp()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
upnphandler::upnphandler()
|
upnphandler::upnphandler()
|
||||||
:toEnable(false), toStart(false), toStop(false),
|
:
|
||||||
eport(0),iport(0), eport_curr(0)
|
upnpState(RS_UPNP_S_UNINITIALISED),
|
||||||
|
cUPnPControlPoint(NULL),
|
||||||
|
toEnable(false), toStart(false), toStop(false),
|
||||||
|
iport(0),eport(0), eport_curr(0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue