1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 12:26:40 +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 af2b48c69e
commit 82a425d226
25 changed files with 61 additions and 61 deletions
+1 -1
View File
@@ -292,7 +292,7 @@ weechat_python_output_flush ()
char *temp_buffer, *command;
int length;
if (!*python_buffer_output[0])
if (!(*python_buffer_output)[0])
return;
/* if there's no buffer, we catch the output, so there's no flush */