2000-09-02  Andreas Jaeger  <aj@suse.de>

	* sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Fixes for fcntl64.

	* libio/fmemopen.c (fmemopen_close): Revert one part of last
	patch.
This commit is contained in:
Andreas Jaeger 2000-09-02 15:05:15 +00:00
parent f622c1a7b2
commit 3146ad427a
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2000-09-02 Andreas Jaeger <aj@suse.de>
* sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Fixes for fcntl64.
* libio/fmemopen.c (fmemopen_close): Revert one part of last
patch.
2000-09-01 Ulrich Drepper <drepper@redhat.com>
* iconvdata/big5hkscs.c: Regenerated from charmap.

View File

@ -183,7 +183,8 @@ fmemopen_close (void *cookie)
c = (fmemopen_cookie_t *) cookie;
free (c->buffer);
if (c->mybuffer)
free (c->buffer);
free (c);
return 0;