artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ee69c3
)
don't forget to increment loop var; infinite loops spotted by sthen@
author
otto
<otto@openbsd.org>
Thu, 1 Feb 2018 11:14:23 +0000
(11:14 +0000)
committer
otto
<otto@openbsd.org>
Thu, 1 Feb 2018 11:14:23 +0000
(11:14 +0000)
libexec/ld.so/malloc.c
patch
|
blob
|
history
diff --git
a/libexec/ld.so/malloc.c
b/libexec/ld.so/malloc.c
index
dc75dbb
..
7a58c6c
100644
(file)
--- a/
libexec/ld.so/malloc.c
+++ b/
libexec/ld.so/malloc.c
@@
-434,6
+434,7
@@
unmap(struct dir_info *d, void *p, size_t sz, int junk)
break;
}
}
+ i++;
}
}
for (i = 0; ; i++) {