Fix null pointer check in IAP_List function

This commit is contained in:
Nick Leeman 2024-04-26 00:37:34 +02:00
parent 82d9180447
commit e8a39d9fee

View File

@ -66,7 +66,7 @@ static int IAP_List(lua_State* L)
DM_LUA_STACK_CHECK(L, 0);
char* buf = IAP_List_CreateBuffer(L);
if( buf == 0 )
if(buf == 0)
{
return 0;
}