diff --git a/main/utils.c b/main/utils.c
index e3d64c3dc243d98bd5d0c55a0d97e741ba4d9cca..64a547526109da26f3447f7016f8c6c02aaec1cb 100644
--- a/main/utils.c
+++ b/main/utils.c
@@ -520,6 +520,12 @@ static void lock_info_destroy(void *data)
 
 
 	for (i = 0; i < lock_info->num_locks; i++) {
+		if (lock_info->locks[i].pending == -1) {
+			/* This just means that the last lock this thread went for was by
+			 * using trylock, and it failed.  This is fine. */
+			break;
+		}
+
 		ast_log(LOG_ERROR, 
 			"Thread '%s' still has a lock! - '%s' (%p) from '%s' in %s:%d!\n", 
 			lock_info->thread_name,