mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
Remove a warning
This commit is contained in:
parent
693204265e
commit
f0b6f5450c
@ -2714,7 +2714,7 @@ static unsigned char * php_pgsql_unescape_bytea(unsigned char *strtext, size_t *
|
||||
memcpy(buf, sp-2, 3);
|
||||
buf[3] = '\0';
|
||||
start = buf;
|
||||
*bp = (unsigned char)strtoul(start, &end, 8);
|
||||
*bp = (unsigned char)strtoul(start, (char **)&end, 8);
|
||||
buflen -= 3;
|
||||
state = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user