Correct a couple of size_t that should be PCRE2_SIZE.
This commit is contained in:
parent
5d6bf78f13
commit
a8e61163e0
|
@ -3115,7 +3115,7 @@ Returns: > 0 => number of match offset pairs placed in offsets
|
||||||
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
||||||
pcre2_dfa_match(const pcre2_code *code, PCRE2_SPTR subject, PCRE2_SIZE length,
|
pcre2_dfa_match(const pcre2_code *code, PCRE2_SPTR subject, PCRE2_SIZE length,
|
||||||
PCRE2_SIZE start_offset, uint32_t options, pcre2_match_data *match_data,
|
PCRE2_SIZE start_offset, uint32_t options, pcre2_match_data *match_data,
|
||||||
pcre2_match_context *mcontext, int *workspace, size_t wscount)
|
pcre2_match_context *mcontext, int *workspace, PCRE2_SIZE wscount)
|
||||||
{
|
{
|
||||||
const pcre2_real_code *re = (const pcre2_real_code *)code;
|
const pcre2_real_code *re = (const pcre2_real_code *)code;
|
||||||
|
|
||||||
|
|
|
@ -277,10 +277,10 @@ Returns: length of message if all is well
|
||||||
*/
|
*/
|
||||||
|
|
||||||
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
||||||
pcre2_get_error_message(int enumber, PCRE2_UCHAR *buffer, size_t size)
|
pcre2_get_error_message(int enumber, PCRE2_UCHAR *buffer, PCRE2_SIZE size)
|
||||||
{
|
{
|
||||||
const unsigned char *message;
|
const unsigned char *message;
|
||||||
size_t i;
|
PCRE2_SIZE i;
|
||||||
int n;
|
int n;
|
||||||
|
|
||||||
if (size == 0) return PCRE2_ERROR_NOMEMORY;
|
if (size == 0) return PCRE2_ERROR_NOMEMORY;
|
||||||
|
|
Loading…
Reference in New Issue