From e81e7db9390b7114b8c50074cd61d8882cd07d2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Dejean?= Date: Sun, 22 Aug 2004 19:32:56 +0000 Subject: [PATCH] Zeroed all args. * lib/command.c: (glibtop_call_l): Zeroed all args. --- ChangeLog | 4 ++++ lib/command.c | 6 ++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8e275b77..07b9e72b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-08-22 Benoît Dejean + + * lib/command.c: (glibtop_call_l): Zeroed all args. + 2004-08-21 Kjartan Maraas * configure.in: Add «nb» to ALL_LINGUAS. diff --git a/lib/command.c b/lib/command.c index 431d59fa..3583d60f 100644 --- a/lib/command.c +++ b/lib/command.c @@ -31,13 +31,11 @@ void * glibtop_call_l (glibtop *server, unsigned command, size_t send_size, const void *send_buf, size_t recv_size, void *recv_buf) { - glibtop_command cmnd; - glibtop_response response; + glibtop_command cmnd = {0}; + glibtop_response response = {0}; glibtop_init_r (&server, 0, 0); - memset (&cmnd, 0, sizeof (glibtop_command)); - cmnd.command = command; /* If send_size is less than _GLIBTOP_PARAM_SIZE (normally 16 Bytes), we