From 65acac2b4fc16e1383d629b77200babe88b0556a Mon Sep 17 00:00:00 2001 From: Vincent Herbet Date: Thu, 4 Jul 2013 20:36:31 +0200 Subject: [PATCH] Fix uninitialized variable warning. --- dlls/fakemeta/glb.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/fakemeta/glb.cpp b/dlls/fakemeta/glb.cpp index 9527b63f..7cea37a8 100644 --- a/dlls/fakemeta/glb.cpp +++ b/dlls/fakemeta/glb.cpp @@ -74,6 +74,7 @@ static cell AMX_NATIVE_CALL amx_glb(AMX *amx, cell *params) } rets; Vector vec; + rets.i = 0; int Valtype = 0; if (iSwitch > glb_start_int && iSwitch < glb_end_int)