Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch branch-1.22 Excluding Merge-Ins
This is equivalent to a diff from f7e215bcac to 5dd5d39e7c
2012-03-19
| ||
12:45 | Avoid a valgrind warning in the side-by-side diff logic. Leaf check-in: 5dd5d39e7c user: drh tags: branch-1.22 | |
2012-03-18
| ||
02:15 | Removed the special-cased addition of g.zExtra==parameter named "name" when running in JSON mode because it causes no end of grief in several JSON handlers and none of the handlers rely on that handling. check-in: ccd6c879b4 user: stephan tags: trunk | |
2012-03-17
| ||
17:53 | Version 1.22 check-in: f7e215bcac user: drh tags: trunk, release, version-1.22 | |
14:59 | clean up error handling and permissions for various /json/user/save cases. check-in: d2bb7aeaa6 user: stephan tags: trunk | |
Changes to src/diff.c.
879 879 int na, nb; /* Number of lines shown from A and B */ 880 880 int i, j; /* Loop counters */ 881 881 int m, ma, mb;/* Number of lines to output */ 882 882 int skip; /* Number of lines to skip */ 883 883 int nChunk = 0; /* Number of chunks of diff output seen so far */ 884 884 SbsLine s; /* Output line buffer */ 885 885 886 + memset(&s, 0, sizeof(s)); 886 887 s.zLine = fossil_malloc( 10*width + 200 ); 887 888 if( s.zLine==0 ) return; 888 889 s.width = width; 889 890 s.escHtml = escHtml; 890 891 s.iStart = -1; 891 892 s.iEnd = -1; 892 893 A = p->aFrom;