summaryrefslogtreecommitdiff
path: root/ext/pcre/pcrelib/pcre_maketables.c
diff options
context:
space:
mode:
authorULF WENDEL <uw@php.net>2012-10-22 13:38:02 +0200
committerULF WENDEL <uw@php.net>2012-10-22 13:38:02 +0200
commit77fd708a0b81bf6dfcfce6aba24eaa606b97f630 (patch)
tree08ac6b2b913d20b60c18909986d1106010b538cb /ext/pcre/pcrelib/pcre_maketables.c
parentc64ff20836173fc35a22092b9e586f80ac722e22 (diff)
parent7d59b2264e4ea75c34c86df756a2c2795b94753f (diff)
downloadphp-git-77fd708a0b81bf6dfcfce6aba24eaa606b97f630.tar.gz
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
* 'PHP-5.4' of git.php.net:php-src: (22 commits) Re-fixed bug #60901 (Improve "tail" syntax for AIX installation) update NEWS updated NEWS Fixed bug #63284 PCRE upgrade to 8.31 preg indenpent test script for #63055 Update libmagic.patch Add fix & missing fix Add fix & missing fix Fixed bug #63307 (Unused variable in oci8.c) Fixed bug #63265 (Add ORA-00028 to the PHP_OCI_HANDLE_ERROR macro) - Updated to version 2012.7 (2012g) SUpport newer bisons. Merge the fix for #61964 to 5.3, which will fix #63304 indent better fix for #63055 Fixed bug #63055 (Segfault in zend_gc with SF2 testsuite) I forgot that inconsistent is only avaliable in debug mode Add comments Fixed bug #63055 (Segfault in zend_gc with SF2 testsuite) PHP 5.3.18 NEWS ...
Diffstat (limited to 'ext/pcre/pcrelib/pcre_maketables.c')
-rw-r--r--ext/pcre/pcrelib/pcre_maketables.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/ext/pcre/pcrelib/pcre_maketables.c b/ext/pcre/pcrelib/pcre_maketables.c
index 2ba612cec7..5c73b75f74 100644
--- a/ext/pcre/pcrelib/pcre_maketables.c
+++ b/ext/pcre/pcrelib/pcre_maketables.c
@@ -6,7 +6,7 @@
and semantics are as close as possible to those of the Perl 5 language.
Written by Philip Hazel
- Copyright (c) 1997-2008 University of Cambridge
+ Copyright (c) 1997-2012 University of Cambridge
-----------------------------------------------------------------------------
Redistribution and use in source and binary forms, with or without
@@ -57,21 +57,26 @@ compilation of dftables.c, in which case the macro DFTABLES is defined. */
/* This function builds a set of character tables for use by PCRE and returns
a pointer to them. They are build using the ctype functions, and consequently
their contents will depend upon the current locale setting. When compiled as
-part of the library, the store is obtained via pcre_malloc(), but when compiled
-inside dftables, use malloc().
+part of the library, the store is obtained via PUBL(malloc)(), but when
+compiled inside dftables, use malloc().
Arguments: none
Returns: pointer to the contiguous block of data
*/
+#ifdef COMPILE_PCRE8
const unsigned char *
pcre_maketables(void)
+#else
+const unsigned char *
+pcre16_maketables(void)
+#endif
{
unsigned char *yield, *p;
int i;
#ifndef DFTABLES
-yield = (unsigned char*)(pcre_malloc)(tables_length);
+yield = (unsigned char*)(PUBL(malloc))(tables_length);
#else
yield = (unsigned char*)malloc(tables_length);
#endif