]> granicus.if.org Git - postgresql/commit
Avoid unportable usage of sscanf(UINT64_FORMAT).
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 27 May 2014 02:23:39 +0000 (22:23 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 27 May 2014 02:23:39 +0000 (22:23 -0400)
commit3ae8e8bf552f622600b1a356550882e886753119
treeb7cba48866b051d87ceccccac29fc4a84bc14986
parent0d202521988e541827adea389b2a3b4e6c351bfe
Avoid unportable usage of sscanf(UINT64_FORMAT).

On Mingw, it seems that scanf() doesn't necessarily accept the same format
codes that printf() does, and in particular it may fail to recognize %llu
even though printf() does.  Since configure only probes printf() behavior
while setting up the INT64_FORMAT macros, this means it's unsafe to use
those macros with scanf().  We had only one instance of such a coding
pattern, in contrib/pg_stat_statements, so change that code to avoid
the problem.

Per buildfarm warnings.  Back-patch to 9.0 where the troublesome code
was introduced.

Michael Paquier
contrib/pg_stat_statements/pg_stat_statements.c