1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

protect vfprintf from hijacking by Windows gettext just like other members of the *printf family.

This commit is contained in:
Andrew Dunstan
2006-11-28 01:12:34 +00:00
parent c15de02f61
commit 796a3f373a
2 changed files with 10 additions and 3 deletions

View File

@ -31,7 +31,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $PostgreSQL: pgsql/src/port/snprintf.c,v 1.32 2006/10/04 00:30:14 momjian Exp $
* $PostgreSQL: pgsql/src/port/snprintf.c,v 1.33 2006/11/28 01:12:34 adunstan Exp $
*/
#include "c.h"
@ -99,6 +99,7 @@
#undef vsnprintf
#undef snprintf
#undef sprintf
#undef vfprintf
#undef fprintf
#undef printf
@ -209,7 +210,7 @@ pg_sprintf(char *str, const char *fmt,...)
return len;
}
static int
int
pg_vfprintf(FILE *stream, const char *fmt, va_list args)
{
PrintfTarget target;