fix leaks
[m6w6/ext-psi] / src / error.c
index 486867bbfb1364338522a9dae218598b077c5c59..8abb68695ea294c3b1b35175d2fb0a080978f29b 100644 (file)
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *******************************************************************************/
 
-#include "php_psi_stdinc.h"
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#else
+# include "php_config.h"
+#endif
 #include "data.h"
 
 /* zend_error_cb */
@@ -73,6 +77,13 @@ void psi_error_wrapper(struct psi_data *context, struct psi_token *t, int type,
        psi_verror(type, fn, ln, msg, argv);
        va_end(argv);
 
+       va_start(argv, msg);
+       PSI_DEBUG_LOCK(context,
+                       PSI_DEBUG_PRINTV(context, msg, argv);
+                       PSI_DEBUG_PRINT(context, "\n");
+       );
+       va_end(argv);
+
        if (context) {
                strlcpy(context->last_error, PG(last_error_message),
                                sizeof(context->last_error));