summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmc <>2016-10-20 08:03:15 +0000
committerjmc <>2016-10-20 08:03:15 +0000
commit2beb49e605c928d344eea1d603b030942cc35d21 (patch)
tree94379164da97a5a12fe7cd3be71adb2757caab81
parent5d491c1b8622dda0661751540c308c094390e5d2 (diff)
downloadopenbsd-2beb49e605c928d344eea1d603b030942cc35d21.tar.gz
openbsd-2beb49e605c928d344eea1d603b030942cc35d21.tar.bz2
openbsd-2beb49e605c928d344eea1d603b030942cc35d21.zip
avoid sentence splicing;
-rw-r--r--src/lib/libc/stdlib/malloc.34
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/malloc.3 b/src/lib/libc/stdlib/malloc.3
index 97014187b8..1abbbdbc7a 100644
--- a/src/lib/libc/stdlib/malloc.3
+++ b/src/lib/libc/stdlib/malloc.3
@@ -30,7 +30,7 @@
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.99 2016/10/20 05:49:59 otto Exp $ 33.\" $OpenBSD: malloc.3,v 1.100 2016/10/20 08:03:15 jmc Exp $
34.\" 34.\"
35.Dd $Mdocdate: October 20 2016 $ 35.Dd $Mdocdate: October 20 2016 $
36.Dt MALLOC 3 36.Dt MALLOC 3
@@ -381,7 +381,7 @@ has been modified.
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 offset at which corruption was detected is printed before the @, 383The offset at which corruption was detected is printed before the @,
384the requested length of the allocation after the @. 384and the requested length of the allocation after the @.
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
387signal handler. 387signal handler.