# HG changeset patch # User mpm@selenic.com # Date 1119468684 28800 # Node ID e731d25ddab2d23297c6d85d847d29fe0d27dc65 # Parent 08f00b6494f467b704df701c7e7240d5e6c3ce2f Fix a compile warning for bdiff -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Fix a compile warning for bdiff manifest hash: 263a8d670a4960f57b6738d41b40626efe1d90d5 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD4DBQFCubyMywK+sNU5EO8RAvw5AJ4usI49PlchNMgytp29Fajf+6aGfgCY/7YV PBZf1pfbBH3nO0gEi33CNg== =cw8/ -----END PGP SIGNATURE----- diff -r 08f00b6494f4 -r e731d25ddab2 mercurial/bdiff.c --- a/mercurial/bdiff.c Wed Jun 22 11:30:14 2005 -0800 +++ b/mercurial/bdiff.c Wed Jun 22 11:31:24 2005 -0800 @@ -239,7 +239,7 @@ static PyObject *blocks(PyObject *self, PyObject *args) { - PyObject *sa, *sb, *rl, *m; + PyObject *sa, *sb, *rl = NULL, *m; struct line *a, *b; struct hunklist l; struct hunk *h;