ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/liblzf/lzf_c.c
(Generate patch)

Comparing liblzf/lzf_c.c (file contents):
Revision 1.28 by root, Fri Nov 30 10:34:26 2007 UTC vs.
Revision 1.29 by root, Fri Nov 30 10:35:02 2007 UTC

256 lit = 0; op++; /* start run */ 256 lit = 0; op++; /* start run */
257 } 257 }
258 } 258 }
259 } 259 }
260 260
261 if (op + 2 > out_end) /* at most 2 bytes can be missing here */ 261 if (op + 3 > out_end) /* at most 3 bytes can be missing here */
262 return 0; 262 return 0;
263 263
264 while (ip < in_end) 264 while (ip < in_end)
265 { 265 {
266 lit++; *op++ = *ip++; 266 lit++; *op++ = *ip++;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines