(imap4d_parse_opt): Fixed dereference of child_inputs. Thanks to Jordi Mallach.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -81,7 +81,7 @@ imap4d_parse_opt (int key, char *arg, struct argp_state *state) | ... | @@ -81,7 +81,7 @@ imap4d_parse_opt (int key, char *arg, struct argp_state *state) |
81 | switch (key) | 81 | switch (key) |
82 | { | 82 | { |
83 | case ARGP_KEY_INIT: | 83 | case ARGP_KEY_INIT: |
84 | state->child_inputs[1] = state->input; | 84 | state->child_inputs[0] = state->input; |
85 | break; | 85 | break; |
86 | 86 | ||
87 | case 'O': | 87 | case 'O': | ... | ... |
-
Please register or sign in to post a comment