Revision: 1135
http://vcs.pcre.org/viewvc?view=rev&revision=1135
Author: chpe
Date: 2012-10-18 19:35:37 +0100 (Thu, 18 Oct 2012)
Log Message:
-----------
pcre32: Fix signed-unsigned compare
Modified Paths:
--------------
code/trunk/pcre_exec.c
Modified: code/trunk/pcre_exec.c
===================================================================
--- code/trunk/pcre_exec.c 2012-10-18 18:35:33 UTC (rev 1134)
+++ code/trunk/pcre_exec.c 2012-10-18 18:35:37 UTC (rev 1135)
@@ -401,7 +401,7 @@
#ifdef SUPPORT_UCP
int Xprop_type;
- int Xprop_value;
+ unsigned int Xprop_value;
int Xprop_fail_result;
int Xoclength;
pcre_uchar Xocchars[6];
@@ -619,7 +619,7 @@
#ifdef SUPPORT_UCP
int prop_type;
-int prop_value;
+unsigned int prop_value;
int prop_fail_result;
int oclength;
pcre_uchar occhars[6];