From 0e51082bbba2d1d1722b496580e50acb7e3040b3 Mon Sep 17 00:00:00 2001 From: Michael M Date: Mon, 7 Aug 2017 11:34:53 -0700 Subject: [PATCH] UPnP: move variable declaration to where it's used --- Source/Core/Common/UPnP.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Core/Common/UPnP.cpp b/Source/Core/Common/UPnP.cpp index 767f49c418..2ca9fc9e54 100644 --- a/Source/Core/Common/UPnP.cpp +++ b/Source/Core/Common/UPnP.cpp @@ -31,8 +31,6 @@ static bool InitUPnP() static bool s_inited = false; static bool s_error = false; - int upnperror = 0; - // Don't init if already inited if (s_inited) return true; @@ -45,6 +43,7 @@ static bool InitUPnP() std::memset(&s_data, 0, sizeof(IGDdatas)); // Find all UPnP devices + int upnperror = 0; std::unique_ptr devlist(nullptr, freeUPNPDevlist); #if MINIUPNPC_API_VERSION >= 14 devlist.reset(upnpDiscover(2000, nullptr, nullptr, 0, 0, 2, &upnperror));