Skip to content

Commit

Permalink
Fix a warning, from Alexander Huemer.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicm committed Dec 17, 2019
1 parent 1e690f6 commit b31812a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deliver-mbox.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ deliver_mbox_deliver(struct deliver_ctx *dctx, struct actitem *ti)
sigset_t set, oset;
struct stat sb;

f = gzf = NULL;
f = NULL;
gzf = NULL;
fd = -1;

path = replacepath(&data->path, m->tags, m, &m->rml, dctx->udata->home);
Expand Down

0 comments on commit b31812a

Please sign in to comment.