1
0
mirror of https://github.com/php/php-src.git synced 2026-03-31 04:32:19 +02:00

fix merge issue in previous (again)

This commit is contained in:
Remi Collet
2014-08-19 09:16:24 +02:00
parent ddd1e2a8b7
commit 633cc42018

View File

@@ -711,8 +711,9 @@ static u_char *php_parserr(u_char *cp, u_char *end, querybuf *answer, int type_t
CHECKCP(1);
n = (cp[0] & 0xFF);
cp++;
CHECKCP(n);
add_assoc_stringl(subarray, "flags", (char*)++cp, n);
add_assoc_stringl(subarray, "flags", (char*)cp, n);
cp += n;
CHECKCP(1);