diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2014-05-12 13:54:33 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2014-05-12 14:36:42 +0100 |
commit | c3680ef0b5c4c4fe71a8badba562780bd45ddce4 (patch) | |
tree | 5890ca1e8c7786be48d9054d883c219f3bf803d3 /src/OS | |
parent | 9ef9101c7dc24878b83931e716021378ae789d78 (diff) |
Fix pair of buffer size errors. Bug 1478
Reported-by: David Binderman
Diffstat (limited to 'src/OS')
-rw-r--r-- | src/OS/os.c-Linux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/OS/os.c-Linux b/src/OS/os.c-Linux index 1e8a6f47d..df0dff9db 100644 --- a/src/OS/os.c-Linux +++ b/src/OS/os.c-Linux @@ -94,7 +94,7 @@ ip_address_item *last = NULL; ip_address_item *next; char addr6p[8][5]; unsigned int plen, scope, dad_status, if_idx; -char devname[20]; +char devname[20+1]; FILE *f; #endif |