From cb00632e23a41d8d171631de9d85e168b251b80e Mon Sep 17 00:00:00 2001 From: SmallJoker Date: Thu, 6 Jun 2019 19:13:29 +0200 Subject: HTTP API: Allow binary downloads and headers (#8573) Add minetest.features.httpfetch_binary_data --- src/script/common/c_converter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/script/common/c_converter.cpp') diff --git a/src/script/common/c_converter.cpp b/src/script/common/c_converter.cpp index dfd3f5cea..b9d6f0494 100644 --- a/src/script/common/c_converter.cpp +++ b/src/script/common/c_converter.cpp @@ -540,9 +540,9 @@ v3s16 getv3s16field_default(lua_State *L, int table, } void setstringfield(lua_State *L, int table, - const char *fieldname, const char *value) + const char *fieldname, const std::string &value) { - lua_pushstring(L, value); + lua_pushlstring(L, value.c_str(), value.length()); if(table < 0) table -= 1; lua_setfield(L, table, fieldname); -- cgit v1.2.3