Dear maintainer,

I've prepared an NMU for hubbub (versioned as 0.0.1-1.1) and
uploaded it to DELAYED/2. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
 .''`.   http://info.comodo.priv.at/ -- GPG Key IDs: 0x00F3CFE4, 0x8649AA06
 : :' :  Debian GNU/Linux user, admin, & developer - http://www.debian.org/
 `. `'   Member of VIBE!AT, SPI Inc., fellow of FSFE | http://got.to/quote/
   `-    BOFH excuse #123:  user to computer ratio too high. 
diff -u hubbub-0.0.1/debian/changelog hubbub-0.0.1/debian/changelog
--- hubbub-0.0.1/debian/changelog
+++ hubbub-0.0.1/debian/changelog
@@ -1,3 +1,11 @@
+hubbub (0.0.1-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix "FTBFS with GCC 4.4: 'cptr' may be used uninitialized" by applying
+    patch from peter green (closes: #539543).
+
+ -- gregor herrmann <gre...@debian.org>  Fri, 25 Dec 2009 19:56:29 +0100
+
 hubbub (0.0.1-1) unstable; urgency=low
 
   * Initial release
only in patch2:
unchanged:
--- hubbub-0.0.1.orig/src/tokeniser/tokeniser.c
+++ hubbub-0.0.1/src/tokeniser/tokeniser.c
@@ -787,7 +787,7 @@
 							+ 1);
 		} else {
 			parserutils_error error;
-			const uint8_t *cptr;
+			const uint8_t *cptr = 0; //initialised to zero to avoid compiler warning
 			error = parserutils_inputstream_peek(
 					tokeniser->input,
 					tokeniser->context.pending,
@@ -1590,8 +1590,9 @@
 					tokeniser->context.match_entity.length
 					+ 1;
 		} else {
-			size_t len;
-			const uint8_t *cptr;
+			//set to 0/NULL to avoid compiler warnings
+			size_t len =0;
+			const uint8_t *cptr = NULL;
 			parserutils_error error;
 
 			error = parserutils_inputstream_peek(
@@ -3137,7 +3138,7 @@
 {
 	hubbub_token token;
 	size_t len;
-	const uint8_t *cptr;
+	const uint8_t *cptr = NULL; //set to null to avoid compiler warning
 	parserutils_error error;
 
 	/* Calling this with nothing to output is a probable bug */

Attachment: signature.asc
Description: Digital signature

Reply via email to