Revision: 14724
Author: adrian.chadd
Date: Fri Jul  9 08:06:57 2010
Log: Fix missing-initialiser warning.


http://code.google.com/p/lusca-cache/source/detail?r=14724

Modified:
 /branches/LUSCA_HEAD/libhttp/HttpHeaderParse.c

=======================================
--- /branches/LUSCA_HEAD/libhttp/HttpHeaderParse.c      Wed Jun 23 09:14:32 2010
+++ /branches/LUSCA_HEAD/libhttp/HttpHeaderParse.c      Fri Jul  9 08:06:57 2010
@@ -240,7 +240,8 @@
 {
     HttpHeaderEntry *e;
     int id;
-    parse_retval_t r;
+    parse_retval_t r = PR_OK;
+
     /* note: name_start == field_start */
const char *name_end = memchr(field_start, ':', field_end - field_start);
     int name_len = name_end ? name_end - field_start : 0;

--
You received this message because you are subscribed to the Google Groups 
"lusca-commit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/lusca-commit?hl=en.

Reply via email to