summaryrefslogtreecommitdiff
path: root/alpine/arg.c
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2015-07-26 08:29:05 -0600
committerEduardo Chappa <chappa@washington.edu>2015-07-26 08:29:05 -0600
commit7c946bfafe961c1dda51d19b5c29a5600ef1e5ec (patch)
tree608ff1bdeafce3223747418560cb39e045a5683f /alpine/arg.c
parent9306e227fc7b1b096d4a58f8c06da66603a50a6a (diff)
downloadalpine-7c946bfafe961c1dda51d19b5c29a5600ef1e5ec.tar.xz
* Fix compilation error in arg.c when pwdcertdir was being freed, even
though a password file might have not been defined. * Work on reducing the number of warnings in OSX.
Diffstat (limited to 'alpine/arg.c')
-rw-r--r--alpine/arg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/alpine/arg.c b/alpine/arg.c
index bb949f3b..836adf36 100644
--- a/alpine/arg.c
+++ b/alpine/arg.c
@@ -293,7 +293,7 @@ Loop: while(--ac > 0)
}
else{
if(pine_state->smimedir)
- fs_give((void **)&pine_state->pwdcertdir);
+ fs_give((void **)&pine_state->smimedir);
pine_state->smimedir = cpystr(str);
}