mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	The getpass function (XPG3 / XPG4 / UNIX98) calls fflush_unlocked (not in any of those standards). This patch fixes this by making fflush_unlocked into a weak alias for __fflush_unlocked and calling __fflush_unlocked from getpass. Tested for x86_64 and x86 (testsuite, and that disassembly of installed stripped shared libraries is unchanged by the patch). [BZ #18540] * libio/iofflush.c [!_IO_MTSAFE_IO] (__fflush_unlocked): Define as strong alias of _IO_fflush. Use libc_hidden_def. * libio/iofflush_u.c (fflush_unlocked): Rename to __fflush_unlocked and define as weak alias of __fflush_unlocked. Use libc_hidden_weak. * include/stdio.h (__fflush_unlocked): Declare. Use libc_hidden_proto. * misc/getpass.c (getpass): Call __fflush_unlocked instead of fflush_unlocked. * conform/Makefile (test-xfail-UNIX98/unistd.h/linknamespace): Remove variable.
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* Copyright (C) 1993-2015 Free Software Foundation, Inc.
 | 
						|
   This file is part of the GNU C Library.
 | 
						|
 | 
						|
   The GNU C Library is free software; you can redistribute it and/or
 | 
						|
   modify it under the terms of the GNU Lesser General Public
 | 
						|
   License as published by the Free Software Foundation; either
 | 
						|
   version 2.1 of the License, or (at your option) any later version.
 | 
						|
 | 
						|
   The GNU C Library is distributed in the hope that it will be useful,
 | 
						|
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
						|
   Lesser General Public License for more details.
 | 
						|
 | 
						|
   You should have received a copy of the GNU Lesser General Public
 | 
						|
   License along with the GNU C Library; if not, see
 | 
						|
   <http://www.gnu.org/licenses/>.
 | 
						|
 | 
						|
   As a special exception, if you link the code in this file with
 | 
						|
   files compiled with a GNU compiler to produce an executable,
 | 
						|
   that does not cause the resulting executable to be covered by
 | 
						|
   the GNU Lesser General Public License.  This exception does not
 | 
						|
   however invalidate any other reasons why the executable file
 | 
						|
   might be covered by the GNU Lesser General Public License.
 | 
						|
   This exception applies to code released by its copyright holders
 | 
						|
   in files containing the exception.  */
 | 
						|
 | 
						|
#include "libioP.h"
 | 
						|
#include <stdio.h>
 | 
						|
 | 
						|
int
 | 
						|
_IO_fflush (fp)
 | 
						|
     _IO_FILE *fp;
 | 
						|
{
 | 
						|
  if (fp == NULL)
 | 
						|
    return _IO_flush_all ();
 | 
						|
  else
 | 
						|
    {
 | 
						|
      int result;
 | 
						|
      CHECK_FILE (fp, EOF);
 | 
						|
      _IO_acquire_lock (fp);
 | 
						|
      result = _IO_SYNC (fp) ? EOF : 0;
 | 
						|
      _IO_release_lock (fp);
 | 
						|
      return result;
 | 
						|
    }
 | 
						|
}
 | 
						|
libc_hidden_def (_IO_fflush)
 | 
						|
 | 
						|
#ifdef weak_alias
 | 
						|
weak_alias (_IO_fflush, fflush)
 | 
						|
libc_hidden_weak (fflush)
 | 
						|
 | 
						|
#ifndef _IO_MTSAFE_IO
 | 
						|
strong_alias (_IO_fflush, __fflush_unlocked)
 | 
						|
libc_hidden_def (__fflush_unlocked)
 | 
						|
weak_alias (_IO_fflush, fflush_unlocked)
 | 
						|
libc_hidden_weak (fflush_unlocked)
 | 
						|
#endif
 | 
						|
#endif
 |