diff options
author | Joe McCann <joem@gentoo.org> | 2005-01-03 21:48:03 +0000 |
---|---|---|
committer | Joe McCann <joem@gentoo.org> | 2005-01-03 21:48:03 +0000 |
commit | 3b0663d2453239e47cd0f95e1013d6b9f5518ad2 (patch) | |
tree | a2583abbce735adb9105834a17e0e89da48e0cbd /dev-libs/libxml2/files | |
parent | Fixed Bug #72426 by adding --with logic to configure. (Manifest recommit) (diff) | |
download | gentoo-2-3b0663d2453239e47cd0f95e1013d6b9f5518ad2.tar.gz gentoo-2-3b0663d2453239e47cd0f95e1013d6b9f5518ad2.tar.bz2 gentoo-2-3b0663d2453239e47cd0f95e1013d6b9f5518ad2.zip |
Patch to fix undefined var, bug #76447
Diffstat (limited to 'dev-libs/libxml2/files')
-rw-r--r-- | dev-libs/libxml2/files/libxml2-2.6.16-xlattable.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dev-libs/libxml2/files/libxml2-2.6.16-xlattable.patch b/dev-libs/libxml2/files/libxml2-2.6.16-xlattable.patch new file mode 100644 index 000000000000..7fdd306debb2 --- /dev/null +++ b/dev-libs/libxml2/files/libxml2-2.6.16-xlattable.patch @@ -0,0 +1,17 @@ +=================================================================== +RCS file: /cvs/gnome/libxml2/encoding.c,v +retrieving revision 1.87 +retrieving revision 1.88 +diff -u -r1.87 -r1.88 +--- encoding.c 2004/11/06 13:26:59 1.87 ++++ encoding.c 2004/11/11 20:42:04 1.88 +@@ -2335,7 +2335,7 @@ + unsigned int c; + + if ((out == NULL) || (outlen == NULL) || (inlen == NULL) || +- (in == NULL) || (xlattable == NULL)) ++ (in == NULL) || (unicodetable == NULL)) + return(-1); + outend = out + *outlen; + inend = in + *inlen; + |