projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33ba94e
)
Fix an off by one error that caused a unit test to occasionally crash.
author
Russell Bryant
<russell@russellbryant.com>
Thu, 10 Jun 2010 13:17:51 +0000
(13:17 +0000)
committer
Russell Bryant
<russell@russellbryant.com>
Thu, 10 Jun 2010 13:17:51 +0000
(13:17 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@269711
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
tests/test_heap.c
patch
|
blob
|
history
diff --git
a/tests/test_heap.c
b/tests/test_heap.c
index
cb0bcff
..
de48f0a
100644
(file)
--- a/
tests/test_heap.c
+++ b/
tests/test_heap.c
@@
-241,7
+241,7
@@
AST_TEST_DEFINE(heap_test_3)
i = test_size / 10;
while (i--) {
- random_index = ast_random() % test_size - 1;
+ random_index = ast_random() % test_size;
node = ast_heap_remove(h, &nodes[random_index]);
if (nodes[random_index].val != node->val){
ast_test_status_update(test, "Failed to remove what we expected to\n");