summaryrefslogtreecommitdiff
path: root/strings/my_vsnprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'strings/my_vsnprintf.c')
-rw-r--r--strings/my_vsnprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/my_vsnprintf.c b/strings/my_vsnprintf.c
index add0bd422e8..cf4a7eedabf 100644
--- a/strings/my_vsnprintf.c
+++ b/strings/my_vsnprintf.c
@@ -759,7 +759,7 @@ int my_vfprintf(FILE *stream, const char* format, va_list args)
if (new_len < cur_len)
return 0; /* Overflow */
cur_len= new_len;
- p= my_malloc(cur_len, MYF(MY_FAE));
+ p= my_malloc(PSI_INSTRUMENT_ME, cur_len, MYF(MY_FAE));
if (!p)
return 0;
}