summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2017-09-29 21:32:42 -0600
committerEduardo Chappa <chappa@washington.edu>2017-09-29 21:32:42 -0600
commit1ba0698db6a2a3bfb0834b37a1e4fda47bb7589d (patch)
tree1753c98d46f2d15db6764e24eb3a99f134116268
parent59761644cf24ee1a37dd4c85e49ba1060cf56ba2 (diff)
downloadalpine-1ba0698db6a2a3bfb0834b37a1e4fda47bb7589d.tar.xz
* Initialize unitilized variable in pith/smime.c and delete .pdb and
.ilk files in a PC-Alpine "build clean" command.
-rw-r--r--build.bat18
-rw-r--r--pith/pine.hlp2
-rw-r--r--pith/smime.c1
3 files changed, 20 insertions, 1 deletions
diff --git a/build.bat b/build.bat
index 52d54310..30455fee 100644
--- a/build.bat
+++ b/build.bat
@@ -76,6 +76,24 @@ echo Sure you want to delete object, library and executable files?!?!
echo If NOT, type Ctrl-C to terminate build script NOW. Type ENTER if you do.
pause
echo Cleaning alpine, pico, mailutil, mapi, and c-client directories
+echo del *.pdb
+del /Q alpine\*.pdb
+del /Q c-client\*.pdb
+del /Q c-client-dll\*.pdb
+rem del /Q mailutil\*.pdb
+rem del /Q mapi\*.pdb
+del /Q pico\*.pdb
+del /Q pith\*.pdb
+del /Q regex\*.pdb
+del /Q alpine\osdep\*.pdb
+del /Q pico\osdep\*.pdb
+del /Q pith\charconv\*.pdb
+del /Q pith\osdep\*.pdb
+echo del *.ilk
+del /Q alpine\*.ilk
+rem del /Q mapi\*.ilk
+del /Q pico\*.ilk
+del /Q pith\*.ilk
set alpinemake=makefile.wnt
set extramakecommand=clean
if NOT exist c-client goto nocclient
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++){