summaryrefslogtreecommitdiff
path: root/code/core/rbuf.c
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2017-08-03 00:23:31 +0200
committerUros Majstorovic <majstor@majstor.org>2017-08-03 00:23:31 +0200
commit43c30eec5196fa8ace45cc703fffe38c69563220 (patch)
tree2dd1446490af478e53d002557505a54731958df8 /code/core/rbuf.c
parent804f291bd719c868778e2c624245113c219b3a36 (diff)
fixed rbuf init
Diffstat (limited to 'code/core/rbuf.c')
-rw-r--r--code/core/rbuf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/code/core/rbuf.c b/code/core/rbuf.c
index d6c9c6e..0865e67 100644
--- a/code/core/rbuf.c
+++ b/code/core/rbuf.c
@@ -3,6 +3,7 @@
#include <string.h>
int ecp_rbuf_init(ECPRBuffer *rbuf, ECPRBMessage *msg, unsigned int msg_size) {
+ memset(msg, 0, sizeof(ECPRBMessage) * msg_size);
rbuf->msg = msg;
if (msg_size) {
rbuf->msg_size = msg_size;