build fix for vs2019

src\nhlsel.c(604) : error C4703: potentially uninitialized local pointer variable 'mf' used
This commit is contained in:
nhmall
2020-03-03 18:34:27 -05:00
parent 452962aa72
commit 7902bacf70

View File

@@ -575,7 +575,7 @@ lua_State *L;
{
int argc = lua_gettop(L);
struct selectionvar *sel = (struct selectionvar *) 0;
struct mapfragment *mf;
struct mapfragment *mf = (struct mapfragment *) 0;
int x, y;
if (argc == 1) {