diff options
author | ph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069> | 2017-03-21 17:46:21 +0000 |
---|---|---|
committer | ph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069> | 2017-03-21 17:46:21 +0000 |
commit | 85f8f579ac7aa268290ed7bd3aca90d927a9b7e9 (patch) | |
tree | e12bf9535013587078d91ae2cb1a3e65908565ad /doc | |
parent | 553386053601c027b72440f2bb000f8711046fa5 (diff) | |
download | pcre2-85f8f579ac7aa268290ed7bd3aca90d927a9b7e9.tar.gz |
Fix 32-bit error buffer size bug in pcre2test (Bugzilla 2079).
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@696 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'doc')
-rw-r--r-- | doc/pcre2api.3 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/pcre2api.3 b/doc/pcre2api.3 index e0a434a..0a3d2ee 100644 --- a/doc/pcre2api.3 +++ b/doc/pcre2api.3 @@ -1,4 +1,4 @@ -.TH PCRE2API 3 "24 December 2016" "PCRE2 10.23" +.TH PCRE2API 3 "21 March 2017" "PCRE2 10.30" .SH NAME PCRE2 - Perl-compatible regular expressions (revised API) .sp @@ -2633,8 +2633,8 @@ The internal recursion limit was reached. A text message for an error code from any PCRE2 function (compile, match, or auxiliary) can be obtained by calling \fBpcre2_get_error_message()\fP. The code is passed as the first argument, with the remaining two arguments specifying a -code unit buffer and its length, into which the text message is placed. Note -that the message is returned in code units of the appropriate width for the +code unit buffer and its length in code units, into which the text message is +placed. The message is returned in code units of the appropriate width for the library that is being used. .P The returned message is terminated with a trailing zero, and the function @@ -3321,6 +3321,6 @@ Cambridge, England. .rs .sp .nf -Last updated: 23 December 2016 -Copyright (c) 1997-2016 University of Cambridge. +Last updated: 21 March 2017 +Copyright (c) 1997-2017 University of Cambridge. .fi |