Fossil

Check-in [a099ccfe92]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix an uninitialized variable resulting from check-in [cdbf0bf179989a2d].
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a099ccfe92e70b3d4c5dc8015c84799dbd45aaf5d2506d9d939738b404818329
User & Date: drh 2021-08-07 10:33:18.240
Context
2021-08-07
17:28
Update to the latest trunk version of SQLite, for SQLite testing. check-in: 5570a6aae9 user: drh tags: trunk
10:33
Fix an uninitialized variable resulting from check-in [cdbf0bf179989a2d]. check-in: a099ccfe92 user: drh tags: trunk
10:18
Update change long to mention the recent Markdown formatter change. check-in: 2125ddb964 user: drh tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/markdown.c.
1779
1780
1781
1782
1783
1784
1785

1786
1787
1788
1789
1790
1791
1792
    /* no special case recognised */
    return 0;
  }

  /* looking for an matching closing tag */
  /* followed by a blank line */
  i = 1;

  while( i<size ){
    i++;
    while( i<size && !(data[i-1]=='<' && data[i]=='/') ){ i++; }
    if( (i+2+curtag->size)>=size ) break;
    j = htmlblock_end(curtag, data+i-1, size-i+1);
    if (j) {
      i += j-1;







>







1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
    /* no special case recognised */
    return 0;
  }

  /* looking for an matching closing tag */
  /* followed by a blank line */
  i = 1;
  found = 0;
  while( i<size ){
    i++;
    while( i<size && !(data[i-1]=='<' && data[i]=='/') ){ i++; }
    if( (i+2+curtag->size)>=size ) break;
    j = htmlblock_end(curtag, data+i-1, size-i+1);
    if (j) {
      i += j-1;