Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2014-10-19 09:31:13 +0400
committerAdam Langley <agl@google.com>2014-10-20 23:18:53 +0400
commita650e054843244b13a13d3192877096ef6c5f0f7 (patch)
tree7b51d1d72a8db49b54b183aeffa13efff9587e02 /ssl/pqueue
parent3831173740ebdb35bc9371a3886dcaa1ce0b9227 (diff)
Fix pqueue_test.c memory leak.
Change-Id: I0a93900f0ebb22893d86a454cda086be37d4bbad Reviewed-on: https://boringssl-review.googlesource.com/1993 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'ssl/pqueue')
-rw-r--r--ssl/pqueue/pqueue_test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ssl/pqueue/pqueue_test.c b/ssl/pqueue/pqueue_test.c
index 16a9ad87..08e686e4 100644
--- a/ssl/pqueue/pqueue_test.c
+++ b/ssl/pqueue/pqueue_test.c
@@ -76,6 +76,7 @@ static int fixed_random() {
}
curr = next;
}
+ pqueue_free(q);
return 1;
}