1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-13 03:09:51 +03:00
aports/community/mailutils/format-security.patch
2025-04-27 03:20:38 +00:00

20 lines
414 B
Diff

--- a/libmailutils/diag/debug.c
+++ b/libmailutils/diag/debug.c
@@ -511,7 +511,7 @@
{
if (delim)
{
- rc = mu_stream_printf (str, delim);
+ rc = mu_stream_printf (str, "%s", delim);
if (rc)
break;
}
@@ -564,7 +564,7 @@
{
if (delim)
{
- rc = mu_stream_printf (str, delim);
+ rc = mu_stream_printf (str, "%s", delim);
if (rc)
break;
}