You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rj...@apache.org on 2010/10/08 21:09:36 UTC

svn commit: r1005968 - /apr/apr-util/branches/0.9.x/xml/expat/lib/xmlparse.c

Author: rjung
Date: Fri Oct  8 19:09:36 2010
New Revision: 1005968

URL: http://svn.apache.org/viewvc?rev=1005968&view=rev
Log:
Remove redundant break
(warning: statement is unreachable)

Backport of r326863.

Modified:
    apr/apr-util/branches/0.9.x/xml/expat/lib/xmlparse.c

Modified: apr/apr-util/branches/0.9.x/xml/expat/lib/xmlparse.c
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/0.9.x/xml/expat/lib/xmlparse.c?rev=1005968&r1=1005967&r2=1005968&view=diff
==============================================================================
--- apr/apr-util/branches/0.9.x/xml/expat/lib/xmlparse.c (original)
+++ apr/apr-util/branches/0.9.x/xml/expat/lib/xmlparse.c Fri Oct  8 19:09:36 2010
@@ -3428,7 +3428,6 @@ appendAttributeValue(XML_Parser parser, 
       if (!poolAppend(pool, enc, ptr, next))
 	return XML_ERROR_NO_MEMORY;
       break;
-      break;
     case XML_TOK_TRAILING_CR:
       next = ptr + enc->minBytesPerChar;
       /* fall through */