mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	Fix decode_base64 returning nothing instead of nil (#13697)
This commit is contained in:
		@@ -393,8 +393,10 @@ int ModApiUtil::l_decode_base64(lua_State *L)
 | 
			
		||||
	const char *d = luaL_checklstring(L, 1, &size);
 | 
			
		||||
	const std::string data = std::string(d, size);
 | 
			
		||||
 | 
			
		||||
	if (!base64_is_valid(data))
 | 
			
		||||
		return 0;
 | 
			
		||||
	if (!base64_is_valid(data)) {
 | 
			
		||||
		lua_pushnil(L);
 | 
			
		||||
		return 1;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	std::string out = base64_decode(data);
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user