You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2013/11/27 16:08:32 UTC

svn commit: r1546063 - /subversion/branches/verify-keep-going/subversion/libsvn_repos/dump.c

Author: stsp
Date: Wed Nov 27 15:08:32 2013
New Revision: 1546063

URL: http://svn.apache.org/r1546063
Log:
On the verify-keep-going branch, a follow-up to r1546059.

* subversion/libsvn_repos/dump.c
  (notify_verification_error): Restore notify_func == NULL check. It is
   needed in this function.
  (notify_verification_error_summary): And remove it here, which is what
   I intended to do in r1546059.

Modified:
    subversion/branches/verify-keep-going/subversion/libsvn_repos/dump.c

Modified: subversion/branches/verify-keep-going/subversion/libsvn_repos/dump.c
URL: http://svn.apache.org/viewvc/subversion/branches/verify-keep-going/subversion/libsvn_repos/dump.c?rev=1546063&r1=1546062&r2=1546063&view=diff
==============================================================================
--- subversion/branches/verify-keep-going/subversion/libsvn_repos/dump.c (original)
+++ subversion/branches/verify-keep-going/subversion/libsvn_repos/dump.c Wed Nov 27 15:08:32 2013
@@ -2031,6 +2031,9 @@ notify_verification_error(svn_revnum_t r
 {
   svn_repos_notify_t *notify_failure;
 
+  if (notify_func == NULL)
+    return;
+
   notify_failure = svn_repos_notify_create(svn_repos_notify_failure, pool);
   notify_failure->err = err;
   notify_failure->revision = rev;
@@ -2060,9 +2063,6 @@ notify_verification_error_summary(svn_re
 {
   svn_repos_notify_t *notify_failure;
 
-  if (notify_func == NULL)
-    return;
-
   notify_failure = svn_repos_notify_create(svn_repos_notify_failure_summary,
                                            pool);
   notify_failure->err = err;