1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 13:56:37 +02:00

core, plugins: add missing parentheses when dereferencing a pointer with an array index

This commit is contained in:
Sébastien Helleu
2024-09-05 20:53:54 +02:00
parent 230c436dd4
commit 143f694fe2
25 changed files with 61 additions and 61 deletions
+1 -1
View File
@@ -192,7 +192,7 @@ weechat_lua_output_flush ()
char *temp_buffer, *command;
int length;
if (!*lua_buffer_output[0])
if (!(*lua_buffer_output)[0])
return;
/* if there's no buffer, we catch the output, so there's no flush */