Minor bugfix in builtin_mbox().
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -1067,7 +1067,7 @@ builtin_mbox (struct mh_machine *mach) | ... | @@ -1067,7 +1067,7 @@ builtin_mbox (struct mh_machine *mach) |
1067 | { | 1067 | { |
1068 | char *p = strchr (buf, '@'); | 1068 | char *p = strchr (buf, '@'); |
1069 | if (p) | 1069 | if (p) |
1070 | *p = NULL; | 1070 | *p = 0; |
1071 | strobj_create (&mach->arg_str, p); | 1071 | strobj_create (&mach->arg_str, p); |
1072 | } | 1072 | } |
1073 | address_destroy (&addr); | 1073 | address_destroy (&addr); | ... | ... |
-
Please register or sign in to post a comment