summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/err
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/err/err.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/err/err.c b/src/lib/libcrypto/err/err.c
index 27a19bc52c..0672477cc8 100644
--- a/src/lib/libcrypto/err/err.c
+++ b/src/lib/libcrypto/err/err.c
@@ -1071,7 +1071,7 @@ void ERR_add_error_vdata(int num, va_list args)
1071 else 1071 else
1072 str=p; 1072 str=p;
1073 } 1073 }
1074 BUF_strlcat(str,a,(size_t)s+1); 1074 strlcat(str,a,(size_t)s+1);
1075 } 1075 }
1076 } 1076 }
1077 ERR_set_error_data(str,ERR_TXT_MALLOCED|ERR_TXT_STRING); 1077 ERR_set_error_data(str,ERR_TXT_MALLOCED|ERR_TXT_STRING);