Diff
Not logged in

Differences From:

File src/vfile.c part of check-in [1871a93dd4] - Fix bugs that can cause a segfault if a blank check-in comment is entered. by drh on 2007-08-30 18:05:19. [view]

To:

File src/vfile.c part of check-in [3ed9214338] - Fix a bug in the manifest parser so that it is able to parse the PGP headers even if the header contains \r characters. by drh on 2007-09-22 19:32:21. Also file src/vfile.c part of check-in [d0305b305a] - Merged mainline into my branch to get the newest application. by aku on 2007-12-05 08:07:46. [view]

@@ -99,9 +99,9 @@
   while( blob_line(p, &line) ){
     char *z = blob_buffer(&line);
     if( z[0]=='-' ){
       if( seenHeader ) break;
-      while( blob_line(p, &line)>1 ){}
+      while( blob_line(p, &line)>2 ){}
       if( blob_line(p, &line)==0 ) break;
     }
     seenHeader = 1;
     if( z[0]!='F' || z[1]!=' ' ) continue;