From 11aaf5c8d2ee5c79567044fe3c36def4d1b93b7f Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Mon, 6 Apr 2020 13:35:34 +1000 Subject: add EE_BADMEMORY_RELEASE --- mysys/errors.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'mysys/errors.c') diff --git a/mysys/errors.c b/mysys/errors.c index 45a77d8c129..741d80753bc 100644 --- a/mysys/errors.c +++ b/mysys/errors.c @@ -55,7 +55,8 @@ const char *globerrs[GLOBERRS]= "Can't change permissions of the file '%s' (Errcode: %M)", "Can't seek in file '%s' (Errcode: %M)", "Can't change mode for file '%s' to 0x%lx (Errcode: %M)", - "Warning: Can't copy ownership for file '%s' (Errcode: %M)" + "Warning: Can't copy ownership for file '%s' (Errcode: %M)", + "Failed to release memory pointer %p, %zu bytes (Errcode: %M)" }; void init_glob_errs(void) @@ -101,6 +102,7 @@ void init_glob_errs() EE(EE_CANT_SEEK) = "Can't seek in file '%s' (Errcode: %M)"; EE(EE_CANT_CHMOD) = "Can't change mode for file '%s' to 0x%lx (Errcode: %M)"; EE(EE_CANT_COPY_OWNERSHIP)= "Warning: Can't copy ownership for file '%s' (Errcode: %M)"; + EE(EE_BADMEMORYRELEASE)= "Failed to release memory pointer %p, %zu bytes (Errcode: %M)"; } #endif -- cgit v1.2.1