From 7026d5219f21f1028ef267dd283731a75dc3abe2 Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Sat, 29 Apr 2006 22:31:33 +0000 Subject: [PATCH] Fix adjust_count, missing break --- libraries/libldap_r/thr_debug.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/libldap_r/thr_debug.c b/libraries/libldap_r/thr_debug.c index 142f9db233..9362b2a2c1 100644 --- a/libraries/libldap_r/thr_debug.c +++ b/libraries/libldap_r/thr_debug.c @@ -620,6 +620,7 @@ adjust_count( int which, int adjust ) resource_counts[which] += adjust; rc = ldap_int_thread_mutex_unlock( &resource_mutexes[which] ); assert( rc == 0 ); + break; case Count_reported: fputs( "== thr_debug: More thread activity after exit ==\n", stderr ); count = Count_reported_more; -- 2.39.5