forked from AuroraMiddleware/gtk
Protect getc_unlocked() by HAVE_FLOCKFILE in all cases. (#134205, Julio M.
Fri Feb 13 01:06:08 2004 Matthias Clasen <maclas@gmx.de> * demos/gtk-demo/main.c (read_line): Protect getc_unlocked() by HAVE_FLOCKFILE in all cases. (#134205, Julio M. Merino Vidal)
This commit is contained in:
parent
f6a32cf0d1
commit
6fed66fc9b
@ -1,3 +1,8 @@
|
||||
Fri Feb 13 01:06:08 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/gtk-demo/main.c (read_line): Protect getc_unlocked() by
|
||||
HAVE_FLOCKFILE in all cases. (#134205, Julio M. Merino Vidal)
|
||||
|
||||
Fri Feb 13 00:54:59 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Fix for #104811, Padraig O'Briain:
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Feb 13 01:06:08 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/gtk-demo/main.c (read_line): Protect getc_unlocked() by
|
||||
HAVE_FLOCKFILE in all cases. (#134205, Julio M. Merino Vidal)
|
||||
|
||||
Fri Feb 13 00:54:59 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Fix for #104811, Padraig O'Briain:
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Feb 13 01:06:08 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/gtk-demo/main.c (read_line): Protect getc_unlocked() by
|
||||
HAVE_FLOCKFILE in all cases. (#134205, Julio M. Merino Vidal)
|
||||
|
||||
Fri Feb 13 00:54:59 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Fix for #104811, Padraig O'Briain:
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Feb 13 01:06:08 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/gtk-demo/main.c (read_line): Protect getc_unlocked() by
|
||||
HAVE_FLOCKFILE in all cases. (#134205, Julio M. Merino Vidal)
|
||||
|
||||
Fri Feb 13 00:54:59 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Fix for #104811, Padraig O'Briain:
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Feb 13 01:06:08 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/gtk-demo/main.c (read_line): Protect getc_unlocked() by
|
||||
HAVE_FLOCKFILE in all cases. (#134205, Julio M. Merino Vidal)
|
||||
|
||||
Fri Feb 13 00:54:59 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Fix for #104811, Padraig O'Briain:
|
||||
|
@ -122,7 +122,7 @@ read_line (FILE *stream, GString *str)
|
||||
{
|
||||
int c;
|
||||
|
||||
#ifndef G_OS_WIN32
|
||||
#ifndef HAVE_FLOCKFILE
|
||||
c = getc_unlocked (stream);
|
||||
#else
|
||||
c = getc (stream);
|
||||
|
Loading…
Reference in New Issue
Block a user