]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Another similar `getline` fix
authorVsevolod Stakhov <vsevolod@rspamd.com>
Fri, 15 Mar 2024 13:26:47 +0000 (13:26 +0000)
committerVsevolod Stakhov <vsevolod@rspamd.com>
Fri, 15 Mar 2024 13:26:47 +0000 (13:26 +0000)
src/lua/lua_util.c

index d1d64b79c827de8d5e1a04b9fd8fb66436192a00..612017d512a8d36c1dfc9ba329d326864791c20b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2023 Vsevolod Stakhov
+ * Copyright 2024 Vsevolod Stakhov
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -2469,7 +2469,7 @@ lua_util_readline(lua_State *L)
 {
        LUA_TRACE_POINT;
        const gchar *prompt = "";
-       gchar *input;
+       gchar *input = NULL;
 
        if (lua_type(L, 1) == LUA_TSTRING) {
                prompt = lua_tostring(L, 1);