diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2004-12-25 17:43:16 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2004-12-25 17:43:16 +0000 |
commit | bbda499067067aefc8e642a2784d247ac0331eae (patch) | |
tree | a702f2c2ba1716b29c5f3b4d019c4590330ff461 /test/l2test.c | |
parent | ac243219976dab3363bcd3215f963eb0026af788 (diff) |
Add memset() to different places to initialize the structures
Diffstat (limited to 'test/l2test.c')
-rw-r--r-- | test/l2test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/l2test.c b/test/l2test.c index eedf4b70..627d37f1 100644 --- a/test/l2test.c +++ b/test/l2test.c @@ -192,6 +192,7 @@ int do_connect(char *svr) } /* Get default options */ + memset(&opts, 0, sizeof(opts)); opt = sizeof(opts); if (getsockopt(s, SOL_L2CAP, L2CAP_OPTIONS, &opts, &opt) < 0) { syslog(LOG_ERR, "Can't get default L2CAP options. %s(%d)", strerror(errno), errno); @@ -236,6 +237,7 @@ int do_connect(char *svr) return -1; } + memset(&opts, 0, sizeof(opts)); opt = sizeof(opts); if (getsockopt(s, SOL_L2CAP, L2CAP_OPTIONS, &opts, &opt) < 0) { syslog(LOG_ERR, "Can't get L2CAP options. %s(%d)", strerror(errno), errno); |