summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/fpurge.c
diff options
context:
space:
mode:
authorespie <espie@openbsd.org>2005-06-17 20:40:30 +0000
committerespie <espie@openbsd.org>2005-06-17 20:40:30 +0000
commitc2fb321235c8dbfba0909bc43913400e90646ae7 (patch)
tree101c9655c9c5856e7de799c241b4fad9067a89db /lib/libc/stdio/fpurge.c
parentbye bye whiteouts (diff)
downloadwireguard-openbsd-c2fb321235c8dbfba0909bc43913400e90646ae7.tar.xz
wireguard-openbsd-c2fb321235c8dbfba0909bc43913400e90646ae7.zip
next citrus step.
reviewed by millert, otto, kevlo, naddy, kettenis... libc+libstdc++ bump
Diffstat (limited to 'lib/libc/stdio/fpurge.c')
-rw-r--r--lib/libc/stdio/fpurge.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/fpurge.c b/lib/libc/stdio/fpurge.c
index 1891bb9b491..e928c73b016 100644
--- a/lib/libc/stdio/fpurge.c
+++ b/lib/libc/stdio/fpurge.c
@@ -31,7 +31,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: fpurge.c,v 1.4 2004/09/28 18:12:44 otto Exp $";
+static char rcsid[] = "$OpenBSD: fpurge.c,v 1.5 2005/06/17 20:40:32 espie Exp $";
#endif /* LIBC_SCCS and not lint */
#include <errno.h>
@@ -53,6 +53,7 @@ fpurge(FILE *fp)
if (HASUB(fp))
FREEUB(fp);
+ WCIO_FREE(fp);
fp->_p = fp->_bf._base;
fp->_r = 0;
fp->_w = fp->_flags & (__SLBF|__SNBF) ? 0 : fp->_bf._size;