diff options
author | Sven Moritz Hallberg <sm@khjk.org> | 2008-02-17 03:28:05 +0100 |
---|---|---|
committer | Sven Moritz Hallberg <sm@khjk.org> | 2008-02-17 03:28:05 +0100 |
commit | 9e64011b1758bc9dbeddb517eff5eccbb0733674 (patch) | |
tree | ad54fbee381f7f482f3cc63946aa22f42c64f909 /otr.c | |
parent | 59ab2afb144aaad7618fde69e81df40bc7241904 (diff) |
fix an uninitialized value
Diffstat (limited to 'otr.c')
-rw-r--r-- | otr.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -768,6 +768,7 @@ void cmd_otr_info(irc_t *irc, char **args) /* interpret arg as 'user/protocol/account' if possible */ protocol = strchr(arg, '/'); + myhandle = NULL; if(protocol) { *(protocol++) = '\0'; myhandle = strchr(protocol, '/'); |