diff options
author | Eduardo Chappa <chappa@washington.edu> | 2017-09-29 21:32:42 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2017-09-29 21:32:42 -0600 |
commit | 1ba0698db6a2a3bfb0834b37a1e4fda47bb7589d (patch) | |
tree | 1753c98d46f2d15db6764e24eb3a99f134116268 /pith | |
parent | 59761644cf24ee1a37dd4c85e49ba1060cf56ba2 (diff) | |
download | alpine-1ba0698db6a2a3bfb0834b37a1e4fda47bb7589d.tar.xz |
* Initialize unitilized variable in pith/smime.c and delete .pdb and
.ilk files in a PC-Alpine "build clean" command.
Diffstat (limited to 'pith')
-rw-r--r-- | pith/pine.hlp | 2 | ||||
-rw-r--r-- | pith/smime.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/pith/pine.hlp b/pith/pine.hlp index 8944930a..86fc2a60 100644 --- a/pith/pine.hlp +++ b/pith/pine.hlp @@ -140,7 +140,7 @@ with help text for the config screen and the composer that didn't have any reasonable place to be called from. Dummy change to get revision in pine.hlp ============= h_revision ================= -Alpine Commit 219 2017-09-27 23:30:48 +Alpine Commit 220 2017-09-29 21:32:36 ============= h_news ================= <HTML> <HEAD> diff --git a/pith/smime.c b/pith/smime.c index 50c0dcc1..90aa8321 100644 --- a/pith/smime.c +++ b/pith/smime.c @@ -2980,6 +2980,7 @@ smime_validate_extra_test(char *mimetext, unsigned long mimelen, char *bodytext, mtext = mimelen ? fs_get(mimelen+1) : NULL; btext = fs_get(bodylen+1); + result = 0; flag = 1; /* silence all failures */ for(i = 1; result == 0 && i < TOTAL_SIGFLTR; i++){ |