Author: svn-role
Date: Tue Apr 30 04:01:09 2013
New Revision: 1477464
URL: http://svn.apache.org/r1477464
Log:
Merge r1476366 from trunk:
* r1476366
Eliminate an unsafe printf format string.
Justification:
Avoid a compiler warning and avoid fear, uncertainty and doubt when
people see this code. There is no an actual risk AFAICT; see my email
<http://svn.haxx.se/dev/archive-2013-04/0601.shtml>.
Votes:
+1: julianfoad, danielsh, rhuijben
Modified:
subversion/branches/1.8.x/ (props changed)
subversion/branches/1.8.x/STATUS
subversion/branches/1.8.x/subversion/svn/props.c
Propchange: subversion/branches/1.8.x/
------------------------------------------------------------------------------
Merged /subversion/trunk:r1476366
Modified: subversion/branches/1.8.x/STATUS
URL:
http://svn.apache.org/viewvc/subversion/branches/1.8.x/STATUS?rev=1477464&r1=1477463&r2=1477464&view=diff
==============================================================================
--- subversion/branches/1.8.x/STATUS (original)
+++ subversion/branches/1.8.x/STATUS Tue Apr 30 04:01:09 2013
@@ -101,15 +101,6 @@ Veto-blocked changes:
Approved changes:
=================
- * r1476366
- Eliminate an unsafe printf format string.
- Justification:
- Avoid a compiler warning and avoid fear, uncertainty and doubt when
- people see this code. There is no an actual risk AFAICT; see my email
- <http://svn.haxx.se/dev/archive-2013-04/0601.shtml>.
- Votes:
- +1: julianfoad, danielsh, rhuijben
-
* r1470904, r1471744, r1475963, r1476155, r1476181, r1476254
Tweak an upgrade Sql statement to be easier to understand and a tiny bit
faster
Modified: subversion/branches/1.8.x/subversion/svn/props.c
URL:
http://svn.apache.org/viewvc/subversion/branches/1.8.x/subversion/svn/props.c?rev=1477464&r1=1477463&r2=1477464&view=diff
==============================================================================
--- subversion/branches/1.8.x/subversion/svn/props.c (original)
+++ subversion/branches/1.8.x/subversion/svn/props.c Tue Apr 30 04:01:09 2013
@@ -321,7 +321,7 @@ svn_cl__check_svn_prop_name(const char *
{
case 0:
/* The best alternative isn't good enough */
- return svn_error_createf(
+ return svn_error_create(
SVN_ERR_CLIENT_PROPERTY_NAME, NULL,
wrong_prop_error_message(prop_use, propname, scratch_pool));