]> granicus.if.org Git - postgresql/commit
Fix build failure on MSVC.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 1 Mar 2018 18:27:44 +0000 (13:27 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 1 Mar 2018 18:27:44 +0000 (13:27 -0500)
commitf0fb93a266f4e80bd5236f4725025565f237285b
tree32408893373350c41d931a2ebdc81af801d74628
parent10102c91ea13028ac5bb5a362ee42e4af14ca624
Fix build failure on MSVC.

Commit 824cceded introduced use of pg_malloc and pg_realloc into
specscanner.l, but it isn't working in 9.3 on MSVC.  Evidently we
added the infrastructure for that in 9.4.  Since the chance of an
actual OOM here is tiny, and the consequences would only be an
isolation test failure, and we have unchecked OOM hazards elsewhere
in this file in 9.3, it's not worth sweating over.  Just replace
the calls with malloc and realloc.

Per buildfarm.
src/test/isolation/specscanner.l