summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorotto <>2016-10-08 12:56:18 +0000
committerotto <>2016-10-08 12:56:18 +0000
commitce6f98553e9389a9df158dab95df0a9eafe22d8f (patch)
tree69d2c8540493a1e5176e00264162456553e8d004 /src
parentd918caea3f9eebb169a37279adac06972b4efe2d (diff)
downloadopenbsd-ce6f98553e9389a9df158dab95df0a9eafe22d8f.tar.gz
openbsd-ce6f98553e9389a9df158dab95df0a9eafe22d8f.tar.bz2
openbsd-ce6f98553e9389a9df158dab95df0a9eafe22d8f.zip
make clear the length printed is the requested length
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/stdlib/malloc.36
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libc/stdlib/malloc.3 b/src/lib/libc/stdlib/malloc.3
index 7420a9c207..701bb5484a 100644
--- a/src/lib/libc/stdlib/malloc.3
+++ b/src/lib/libc/stdlib/malloc.3
@@ -30,9 +30,9 @@
30.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31.\" SUCH DAMAGE. 31.\" SUCH DAMAGE.
32.\" 32.\"
33.\" $OpenBSD: malloc.3,v 1.97 2016/10/07 14:43:13 jmc Exp $ 33.\" $OpenBSD: malloc.3,v 1.98 2016/10/08 12:56:18 otto Exp $
34.\" 34.\"
35.Dd $Mdocdate: October 7 2016 $ 35.Dd $Mdocdate: October 8 2016 $
36.Dt MALLOC 3 36.Dt MALLOC 3
37.Os 37.Os
38.Sh NAME 38.Sh NAME
@@ -380,7 +380,7 @@ has been modified.
380.It Dq chunk canary corrupted 0xhhhhllll 380.It Dq chunk canary corrupted 0xhhhhllll
381A byte after the requested size has been overwritten, 381A byte after the requested size has been overwritten,
382indicating a heap overflow. 382indicating a heap overflow.
383The high word is the length of the chunk; 383The high word is the requested length of the chunk;
384the low word is the offset at which corruption was detected. 384the low word is the offset at which corruption was detected.
385.It Dq recursive call 385.It Dq recursive call
386An attempt was made to call recursively into these functions, i.e., from a 386An attempt was made to call recursively into these functions, i.e., from a