24 |
|
|
25 |
3. Altered versions must be plainly marked as such, and must not be |
3. Altered versions must be plainly marked as such, and must not be |
26 |
misrepresented as being the original software. |
misrepresented as being the original software. |
27 |
|
|
28 |
|
4. If PCRE is embedded in any software that is released under the GNU |
29 |
|
General Purpose Licence (GPL), then the terms of that licence shall |
30 |
|
supersede any condition above with which it is incompatible. |
31 |
----------------------------------------------------------------------------- |
----------------------------------------------------------------------------- |
32 |
|
|
33 |
See the file Tech.Notes for some information on the internals. |
See the file Tech.Notes for some information on the internals. |
65 |
int i; |
int i; |
66 |
|
|
67 |
#ifndef DFTABLES |
#ifndef DFTABLES |
68 |
yield = (pcre_malloc)(tables_length); |
yield = (unsigned char*)(pcre_malloc)(tables_length); |
69 |
#else |
#else |
70 |
yield = malloc(tables_length); |
yield = (unsigned char*)malloc(tables_length); |
71 |
#endif |
#endif |
72 |
|
|
73 |
if (yield == NULL) return NULL; |
if (yield == NULL) return NULL; |