You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2014/06/26 15:53:56 UTC

svn commit: r1605785 - /subversion/branches/svn-auth-x509/subversion/libsvn_subr/x509parse.c

Author: breser
Date: Thu Jun 26 13:53:55 2014
New Revision: 1605785

URL: http://svn.apache.org/r1605785
Log:
On the svn-auth-x509 branch, fix typo.

* subversion/libsvn_subr/x509parse.c:
  (x509_skip_ext): compare the pointers not the pointer and value.

Modified:
    subversion/branches/svn-auth-x509/subversion/libsvn_subr/x509parse.c

Modified: subversion/branches/svn-auth-x509/subversion/libsvn_subr/x509parse.c
URL: http://svn.apache.org/viewvc/subversion/branches/svn-auth-x509/subversion/libsvn_subr/x509parse.c?rev=1605785&r1=1605784&r2=1605785&view=diff
==============================================================================
--- subversion/branches/svn-auth-x509/subversion/libsvn_subr/x509parse.c (original)
+++ subversion/branches/svn-auth-x509/subversion/libsvn_subr/x509parse.c Thu Jun 26 13:53:55 2014
@@ -477,7 +477,7 @@ x509_skip_ext(const unsigned char **p,
   svn_error_t *err;
   int len;
 
-  if (*p == *end)
+  if (*p == end)
     return SVN_NO_ERROR;
 
   err = asn1_get_tag(p, end, &len,