Skip to content
Snippets Groups Projects
Commit 2f86f146 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Fix BSD/OS thread file locking bug in new fseeko code.

Backpatch to 7.3.X.
parent d6dbb6b2
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/port/fseeko.c,v 1.7 2002/10/28 00:00:25 momjian Exp $
* $Header: /cvsroot/pgsql/src/port/fseeko.c,v 1.8 2003/01/02 06:00:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -55,7 +55,7 @@ fseeko(FILE *stream, off_t offset, int whence)
if (fsetpos(stream, &floc) != 0)
goto failure;
#ifdef bsdi
flockfile(stream);
funlockfile(stream);
#endif
return 0;
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment