diff options
author | Adam <adamdharrison@gmail.com> | 2022-09-18 18:42:30 -0400 |
---|---|---|
committer | Adam <adamdharrison@gmail.com> | 2022-09-18 18:42:30 -0400 |
commit | 3c17efb0fbc6d26d3a59790ba26fab6756688d41 (patch) | |
tree | e1fad7fb9563e09267cd3e6bbe41499a4121c640 | |
parent | a1feb9696cbbffc3ba061dcffc5a0ada9891fb22 (diff) | |
download | lite-xl-plugin-manager-3c17efb0fbc6d26d3a59790ba26fab6756688d41.tar.gz lite-xl-plugin-manager-3c17efb0fbc6d26d3a59790ba26fab6756688d41.zip |
Fixed segfault.
-rwxr-xr-x | build.sh | 2 | ||||
-rw-r--r-- | lpm.c | 6 |
2 files changed, 5 insertions, 3 deletions
@@ -37,5 +37,5 @@ xxd -i lpm.lua > lpm.lua.c [[ $OSTYPE != 'msys'* && $CC != *'mingw'* && $CC != "emcc" ]] && LDFLAGS=" $LDFLAGS -ldl -pthread" [[ $OSTYPE == 'msys'* || $CC == *'mingw'* ]] && LDFLAGS="$LDFLAGS -lws2_32 -lz -lwinhttp -lole32 -lcrypt32 -lrpcrt4" -[[ "$@" != *" -g "* || "$@" != *" -O"* ]] && CFLAGS="$CFLAGS -O3" && LDFLAGS="$LDFLAGS -s" +[[ " $@" != *" -g"* && " $@" != *" -O"* ]] && CFLAGS="$CFLAGS -O3" && LDFLAGS="$LDFLAGS -s" $CC $CFLAGS $SRCS $@ -o $BIN $LDFLAGS @@ -477,7 +477,8 @@ static const luaL_Reg system_lib[] = { { "reset", lpm_reset }, // Updates a git repository to the specified commit/hash/branch. { "status", lpm_status }, // Returns the git repository in question's current branch, if any, and commit hash. { "get", lpm_get }, // HTTP(s) GET request. - { "certs", lpm_certs } // Sets the SSL certificate chain folder/file. + { "certs", lpm_certs }, // Sets the SSL certificate chain folder/file. + { NULL, NULL } }; @@ -514,7 +515,8 @@ int main(int argc, char* argv[]) { git_libgit2_init(); lua_State* L = luaL_newstate(); luaL_openlibs(L); - luaL_newlib(L, system_lib); lua_setglobal(L, "system"); + luaL_newlib(L, system_lib); + lua_setglobal(L, "system"); lua_newtable(L); for (int i = 0; i < argc; ++i) { lua_pushstring(L, argv[i]); |