summaryrefslogtreecommitdiff
path: root/doc/html/pcre2serialize.html
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2015-12-17 18:44:06 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2015-12-17 18:44:06 +0000
commit9a29fc883ba431ef060e80308d5e4b813b70388d (patch)
treee0b4084519b7d988fe46e528b8e428a3a48f9204 /doc/html/pcre2serialize.html
parent9f663b990467cfd5f173147c3b648cf195f606bd (diff)
downloadpcre2-9a29fc883ba431ef060e80308d5e4b813b70388d.tar.gz
File tidies, version updates, etc. for 10.21-RC1
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@471 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'doc/html/pcre2serialize.html')
-rw-r--r--doc/html/pcre2serialize.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/pcre2serialize.html b/doc/html/pcre2serialize.html
index 7f5336b..3747c0a 100644
--- a/doc/html/pcre2serialize.html
+++ b/doc/html/pcre2serialize.html
@@ -154,13 +154,13 @@ on a system with different endianness.
<P>
Decoded patterns can be used for matching in the usual way, and must be freed
by calling <b>pcre2_code_free()</b>. However, be aware that there is a potential
-race issue if you are using multiple patterns that were decoded from a single
+race issue if you are using multiple patterns that were decoded from a single
byte stream in a multithreaded application. A single copy of the character
tables is used by all the decoded patterns and a reference count is used to
arrange for its memory to be automatically freed when the last pattern is
freed, but there is no locking on this reference count. Therefore, if you want
to call <b>pcre2_code_free()</b> for these patterns in different threads, you
-must arrange your own locking, and ensure that <b>pcre2_code_free()</b> cannot
+must arrange your own locking, and ensure that <b>pcre2_code_free()</b> cannot
be called by two threads at the same time.
</P>
<P>