aboutsummaryrefslogtreecommitdiffhomepage
path: root/event.cpp
diff options
context:
space:
mode:
authorGravatar Daniel J. Hofmann <daniel@trvx.org>2014-03-07 18:20:42 +0100
committerGravatar Daniel J. Hofmann <daniel@trvx.org>2014-03-07 18:28:16 +0100
commit7dc0b6f40be172915783e26cd77e86cbdb7ddaba (patch)
treeef46bac818615f9d911eb72c1bced92f00194ffe /event.cpp
parent79d14521db4c71250109785b8317aeceecd539c9 (diff)
Fixed various Undefined Behavior occurrences.
Conditionally uninitialized: - builtin_commandline.cpp:577 - expand.cpp:869 - parse_util.cpp:1036 Initialization of POD structs: - event.cpp:61 - autoload.cpp:22 References used with va_start: - common.cpp:608:18 Found with clang-3.4's awesome -Wconditional-uninitialized, -Wmissing-field-initializers and -Wvarargs.
Diffstat (limited to 'event.cpp')
-rw-r--r--event.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/event.cpp b/event.cpp
index 65d337f0..6851a9e3 100644
--- a/event.cpp
+++ b/event.cpp
@@ -58,7 +58,7 @@ signal_list_t;
active, which is the one that new events is written to. The inactive
one contains the events that are currently beeing performed.
*/
-static signal_list_t sig_list[]= {{0,0},{0,0}};
+static signal_list_t sig_list[]= {{},{}};
/**
The index of sig_list that is the list of signals currently written to