diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-01-04 23:18:07 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-01-04 23:18:07 +0100 |
commit | ce8b226cbdf4b1fbf10571ced052172fa3e2e04d (patch) | |
tree | e8e1e36f16701b4847f7a3f7ae5cc33cf317ae8f /main.c | |
parent | b949545598eaa75b38b4d57c9aea6216bd82256c (diff) |
fix uninitialized variables
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -185,7 +185,7 @@ static void fixup_prefix(char *str) int main(int argc, char **argv) { - const char *tls_key, *tls_crt; + const char *tls_key = NULL, *tls_crt = NULL; bool nofork = false; char *port; int opt, ch; |