projects
/
oweals
/
tinc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a99ded7
)
Don't pass uninitialized bytes to ioctl().
author
Guus Sliepen
<guus@tinc-vpn.org>
Wed, 24 Dec 2014 15:59:08 +0000
(16:59 +0100)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Wed, 24 Dec 2014 15:59:08 +0000
(16:59 +0100)
src/linux/device.c
patch
|
blob
|
history
diff --git
a/src/linux/device.c
b/src/linux/device.c
index 3b384d42950bc0392298c390e9ad53ea4ed8f36c..5f925ceabbba698a712a0a5872b6948001b96bde 100644
(file)
--- a/
src/linux/device.c
+++ b/
src/linux/device.c
@@
-106,7
+106,7
@@
static bool setup_device(void) {
logger(DEBUG_ALWAYS, LOG_INFO, "%s is a %s", device, device_info);
if(ifr.ifr_flags & IFF_TAP) {
- struct ifreq ifr_mac;
+ struct ifreq ifr_mac
= {}
;
if(!ioctl(device_fd, SIOCGIFHWADDR, &ifr_mac))
memcpy(mymac.x, ifr_mac.ifr_hwaddr.sa_data, ETH_ALEN);
else