Home
last modified time | relevance | path

Searched refs:utf8_buf (Results 1 – 2 of 2) sorted by relevance

/php-src/ext/fileinfo/libmagic/
H A Dascmagic.c112 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()
327 if (utf8_buf) in file_ascmagic_with_encoding()
328 efree(utf8_buf); in file_ascmagic_with_encoding()
/php-src/ext/fileinfo/
H A Dlibmagic.patch887 - if ((utf8_buf = CAST(unsigned char *, malloc(mlen))) == NULL) {
888 + if ((utf8_buf = CAST(unsigned char *, emalloc(mlen))) == NULL) {
907 - free(utf8_buf);
908 + if (utf8_buf)
909 + efree(utf8_buf);

Completed in 15 milliseconds