Author: bhuvan
Date: Thu Nov 26 03:40:37 2009
New Revision: 884394
URL: http://svn.apache.org/viewvc?rev=884394&view=rev
Log:
Follow-up for r884002.
* subversion/libsvn_subr/utf.c
(fuzzy_escape): Fix a comment to denote NUL character.
Found by: Kannan R <kannanr@collab.net>
Suggested by: stsp
Modified:
subversion/trunk/subversion/libsvn_subr/utf.c
Modified: subversion/trunk/subversion/libsvn_subr/utf.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/utf.c?rev=884394&r1=884393&r2=884394&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/utf.c (original)
+++ subversion/trunk/subversion/libsvn_subr/utf.c Thu Nov 26 03:40:37 2009
@@ -399,7 +399,7 @@
src++;
}
- /* Allocate that amount, plus one slot for NULL. */
+ /* Allocate that amount, plus one slot for '\0' character. */
new = apr_palloc(pool, new_len + 1);
new_orig = new;
|