]> rtime.felk.cvut.cz Git - git.git/blobdiff - help.c
help.c: give correct structure's size to memset()
[git.git] / help.c
diff --git a/help.c b/help.c
index fd87bb5aeec82beec600be46248b19b13bb33804..1203c7291ebf2a411fb4a0901f808587ff8ead8b 100644 (file)
--- a/help.c
+++ b/help.c
@@ -302,7 +302,7 @@ const char *help_unknown_cmd(const char *cmd)
        struct cmdnames main_cmds, other_cmds;
 
        memset(&main_cmds, 0, sizeof(main_cmds));
-       memset(&other_cmds, 0, sizeof(main_cmds));
+       memset(&other_cmds, 0, sizeof(other_cmds));
        memset(&aliases, 0, sizeof(aliases));
 
        git_config(git_unknown_cmd_config, NULL);