summaryrefslogtreecommitdiff
path: root/pcre_compile.c
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2020-02-12 17:37:05 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2020-02-12 17:37:05 +0000
commit05f40e7bad18b7fadc2a34bf39c149ce801abe40 (patch)
tree33335546cc640b445e00f4d7498af7ecb2fc6bce /pcre_compile.c
parentbe73d3747c3b2c0dab935279484bf96d55221106 (diff)
downloadpcre-05f40e7bad18b7fadc2a34bf39c149ce801abe40.tar.gz
Final tidies and documentation updates for 8.44.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1763 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcre_compile.c')
-rw-r--r--pcre_compile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pcre_compile.c b/pcre_compile.c
index 32e5b91..3be0fbf 100644
--- a/pcre_compile.c
+++ b/pcre_compile.c
@@ -7130,14 +7130,14 @@ for (;; ptr++)
int n = 0;
ptr++;
while(IS_DIGIT(*ptr))
- {
+ {
n = n * 10 + *ptr++ - CHAR_0;
if (n > 255)
{
*errorcodeptr = ERR38;
goto FAILED;
}
- }
+ }
if (*ptr != CHAR_RIGHT_PARENTHESIS)
{
*errorcodeptr = ERR39;