Module: wine Branch: master Commit: caf83eb8027c43646e37b7f694d354d2a28c5204 URL: https://gitlab.winehq.org/wine/wine/-/commit/caf83eb8027c43646e37b7f694d354d...
Author: Francois Gouget fgouget@free.fr Date: Thu Oct 20 17:31:49 2022 +0200
wintrust: Add a trailing linefeed to an ERR() message.
Also add a full stop to match the other ERR() messages in load_secondary_signatures().
---
dlls/wintrust/softpub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/wintrust/softpub.c b/dlls/wintrust/softpub.c index 06b178a98b9..48fd78682b1 100644 --- a/dlls/wintrust/softpub.c +++ b/dlls/wintrust/softpub.c @@ -855,7 +855,7 @@ static void load_secondary_signatures(CRYPT_PROVIDER_DATA *data, HCRYPTMSG msg)
if (!(s->rhSecondarySigs = data->psPfns->pfnAlloc(attrs->rgAttr[i].cValue * sizeof(*s->rhSecondarySigs)))) { - ERR("No memory"); + ERR("No memory.\n"); goto done; } s->cSecondarySigs = 0;