Searched refs:utf8_buf (Results 1 – 2 of 2) sorted by relevance
/PHP-8.2/ext/fileinfo/libmagic/ |
H A D | ascmagic.c | 112 unsigned char *utf8_buf = NULL, *utf8_end; in file_ascmagic_with_encoding() local 146 if ((utf8_buf = CAST(unsigned char *, emalloc(mlen))) == NULL) { in file_ascmagic_with_encoding() 150 if ((utf8_end = encode_utf8(utf8_buf, mlen, ubuf, ulen)) in file_ascmagic_with_encoding() 155 buffer_init(&bb, b->fd, &b->st, utf8_buf, in file_ascmagic_with_encoding() 156 CAST(size_t, utf8_end - utf8_buf)); in file_ascmagic_with_encoding() 335 if (utf8_buf) in file_ascmagic_with_encoding() 336 efree(utf8_buf); in file_ascmagic_with_encoding()
|
/PHP-8.2/ext/fileinfo/ |
H A D | libmagic.patch | 962 - if ((utf8_buf = CAST(unsigned char *, malloc(mlen))) == NULL) { 963 + if ((utf8_buf = CAST(unsigned char *, emalloc(mlen))) == NULL) { 967 if ((utf8_end = encode_utf8(utf8_buf, mlen, ubuf, ulen)) 973 buffer_init(&bb, b->fd, &b->st, utf8_buf, 974 CAST(size_t, utf8_end - utf8_buf)); 980 - free(utf8_buf); 981 + if (utf8_buf) 982 + efree(utf8_buf);
|
Completed in 14 milliseconds