X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fopen_wmemstream.c;h=ed1b561d9c92fa0ce787692dbd27d369292dd0a5;hb=c9ebff4736128186121424364c1c62224b02aee3;hp=a830b143ebe95cbf6dc4b038bc44b7357b824841;hpb=7ee3dcb3c603b20fcd4547ffb00e11701c6d1cf4;p=musl diff --git a/src/stdio/open_wmemstream.c b/src/stdio/open_wmemstream.c index a830b143..ed1b561d 100644 --- a/src/stdio/open_wmemstream.c +++ b/src/stdio/open_wmemstream.c @@ -1,4 +1,10 @@ #include "stdio_impl.h" +#include +#include +#include +#include +#include +#include "libc.h" struct cookie { wchar_t **bufp; @@ -10,6 +16,12 @@ struct cookie { mbstate_t mbs; }; +struct wms_FILE { + FILE f; + struct cookie c; + unsigned char buf[1]; +}; + static off_t wms_seek(FILE *f, off_t off, int whence) { ssize_t base; @@ -55,32 +67,36 @@ static int wms_close(FILE *f) FILE *open_wmemstream(wchar_t **bufp, size_t *sizep) { - FILE *f; - struct cookie *c; - if (!(f=malloc(sizeof *f + sizeof *c))) return 0; - memset(f, 0, sizeof *f + sizeof *c); - f->cookie = c = (void *)(f+1); + struct wms_FILE *f; + wchar_t *buf; - c->bufp = bufp; - c->sizep = sizep; - c->pos = c->len = c->space = 0; - c->buf = 0; + if (!(f=malloc(sizeof *f))) return 0; + if (!(buf=malloc(sizeof *buf))) { + free(f); + return 0; + } + memset(&f->f, 0, sizeof f->f); + memset(&f->c, 0, sizeof f->c); + f->f.cookie = &f->c; - f->flags = F_NORD; - f->fd = -1; - f->buf = (void *)(c+1); - f->buf_size = 0; - f->lbf = EOF; - f->write = wms_write; - f->seek = wms_seek; - f->close = wms_close; + f->c.bufp = bufp; + f->c.sizep = sizep; + f->c.pos = f->c.len = f->c.space = *sizep = 0; + f->c.buf = *bufp = buf; + *buf = 0; - if (!libc.threaded) { - f->lock = -1; - f->next = libc.ofl_head; - if (libc.ofl_head) libc.ofl_head->prev = f; - libc.ofl_head = f; - } + f->f.flags = F_NORD; + f->f.fd = -1; + f->f.buf = f->buf; + f->f.buf_size = 0; + f->f.lbf = EOF; + f->f.write = wms_write; + f->f.seek = wms_seek; + f->f.close = wms_close; + + if (!libc.threaded) f->f.lock = -1; + + fwide(&f->f, 1); - return f; + return __ofl_add(&f->f); }