This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch 3.6.x
in repository nx-libs.

commit e0291f30df9df99bfbd987e7d181237925d3c0e3
Author: Ulrich Sibiller <ul...@gmx.de>
Date:   Thu Jun 21 23:18:36 2018 +0200

    NXdixfonts.c: use calloc for LFclosurePtr
    
    Just to be sure. It is used at lots of locations afterwards.
---
 nx-X11/programs/Xserver/hw/nxagent/NXdixfonts.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nx-X11/programs/Xserver/hw/nxagent/NXdixfonts.c 
b/nx-X11/programs/Xserver/hw/nxagent/NXdixfonts.c
index dba734a..8b3fdcc 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/NXdixfonts.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/NXdixfonts.c
@@ -690,7 +690,7 @@ ListFonts(ClientPtr client, unsigned char *pattern, 
unsigned length,
     if (length > XLFDMAXFONTNAMELEN)
        return BadAlloc;
 
-    if (!(c = (LFclosurePtr) malloc(sizeof *c)))
+    if (!(c = (LFclosurePtr) calloc(1, sizeof *c)))
        return BadAlloc;
     c->fpe_list = (FontPathElementPtr *)
        malloc(sizeof(FontPathElementPtr) * num_fpes);

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/nx-libs.git
_______________________________________________
x2go-commits mailing list
x2go-commits@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-commits

Reply via email to