From 586a3a1326595b7c106daf89bb5ae66d1cee775b Mon Sep 17 00:00:00 2001 From: Alexandr Akulich Date: Fri, 13 Nov 2015 23:38:11 +0500 Subject: [PATCH] xrCore/LocatorAPI_auth.cpp: Fixed out-of-scope variable usage. --- src/xrCore/LocatorAPI_auth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xrCore/LocatorAPI_auth.cpp b/src/xrCore/LocatorAPI_auth.cpp index 831d760ca35..1cf0ec6dc71 100644 --- a/src/xrCore/LocatorAPI_auth.cpp +++ b/src/xrCore/LocatorAPI_auth.cpp @@ -75,7 +75,7 @@ void CLocatorAPI::auth_runtime(void* params) continue; // test for important - for (s = 0; s < _o->important.size(); s++) + for (u32 s = 0; s < _o->important.size(); s++) { if ((f.size_real != 0) && strstr(f.name, _o->important[s].c_str())) {