summaryrefslogtreecommitdiff
path: root/pcre_byte_order.c
diff options
context:
space:
mode:
authorzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-12-30 13:22:28 +0000
committerzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-12-30 13:22:28 +0000
commitd42d890c2e36e9749c36b180c1cc16b8f6ec0682 (patch)
tree81bf467bd7c28873d9815db47b39fbc6ee7eda42 /pcre_byte_order.c
parentde13f2f4cb0cb6fa969d0dbc352004fd0bc0078e (diff)
downloadpcre-d42d890c2e36e9749c36b180c1cc16b8f6ec0682.tar.gz
endianness fixes and JIT compiler update
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@839 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcre_byte_order.c')
-rw-r--r--pcre_byte_order.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcre_byte_order.c b/pcre_byte_order.c
index ef0d936..a3b2aba 100644
--- a/pcre_byte_order.c
+++ b/pcre_byte_order.c
@@ -139,7 +139,7 @@ re->name_count = swap_uint16(re->name_count);
re->ref_count = swap_uint16(re->ref_count);
re->tables = tables;
-if (extra_data != NULL && (re->flags & PCRE_EXTRA_STUDY_DATA) != 0)
+if (extra_data != NULL && (extra_data->flags & PCRE_EXTRA_STUDY_DATA) != 0)
{
study = (pcre_study_data *)extra_data->study_data;
study->size = swap_uint32(study->size);