X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Ffb-null.c;h=8edc5a4d523e4b96cfc14361f4d791f1de2be4d4;hb=395d5c738aebc0d93688eb140cc00ed1a9196ef3;hp=6f0a40a217ba74df600a9186bcfb46a617d0a96a;hpb=2668e862ad13dfb955249939f2b61aaee05c949c;p=libucw.git diff --git a/ucw/fb-null.c b/ucw/fb-null.c index 6f0a40a2..8edc5a4d 100644 --- a/ucw/fb-null.c +++ b/ucw/fb-null.c @@ -21,6 +21,7 @@ struct fastbuf *fbnull_open(uns bufsize) { struct fastbuf *b = xmalloc(sizeof(*b) + bufsize); bzero(b, sizeof(*b)); + b->name = ""; b->close = fbnull_close; fbnull_start(b, (byte *)(b + 1), bufsize); return b;