Closes #3644
git-svn-id: http://svn.osgeo.org/postgis/trunk@15156
b70326c6-7e19-0410-871a-
916f4a2858ee
static void
handleInterrupt(int sig)
{
- printf("Interrupt requested\n"); fflush(stdout);
+ /* NOTE: printf here would be dangerous, see
+ * https://trac.osgeo.org/postgis/ticket/3644
+ *
+ * TODO: block interrupts during execution, to fix the problem
+ */
+ /* printf("Interrupt requested\n"); fflush(stdout); */
#if POSTGIS_GEOS_VERSION >= 34
GEOS_interruptRequest();