From 817328eea788c746131cf151b64fd250200da333 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sun, 18 Jul 2010 14:51:45 +0200 Subject: Remove undefined operations --- debug/vdprintf_chk.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'debug/vdprintf_chk.c') diff --git a/debug/vdprintf_chk.c b/debug/vdprintf_chk.c index 8f3d332a40..adb60262f4 100644 --- a/debug/vdprintf_chk.c +++ b/debug/vdprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1997-2000, 2001, 2002, 2003, 2006, 2008 +/* Copyright (C) 1995, 1997-2000, 2001, 2002, 2003, 2006, 2008, 2010 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -50,10 +50,10 @@ __vdprintf_chk (int d, int flags, const char *format, va_list arg) INTUSE(_IO_un_link) (&tmpfil); return EOF; } - tmpfil.file._IO_file_flags = - (_IO_mask_flags (&tmpfil.file, _IO_NO_READS, - _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING) - | _IO_DELETE_DONT_CLOSE); + tmpfil.file._flags |= _IO_DELETE_DONT_CLOSE; + + _IO_mask_flags (&tmpfil.file, _IO_NO_READS, + _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING); /* For flags > 0 (i.e. __USE_FORTIFY_LEVEL > 1) request that %n can only come from read-only format strings. */ -- cgit v1.2.3