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

trigger: remove check of NULL pointers before calling trigger_free() (issue #865)

This commit is contained in:
Sébastien Helleu
2024-04-25 20:24:12 +02:00
parent 2b919b0a01
commit 4a058ae0f5
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -629,7 +629,7 @@ TEST(Trigger, New)
POINTERS_EQUAL(NULL, trigger_search_with_option (NULL));
POINTERS_EQUAL(NULL, trigger_search_with_option (config_look_day_change));
/* invalid free */
/* test free of NULL trigger */
trigger_free (NULL);
}