Merge pull request #19 from psarna/master

Fixed potential stack corruption with sprintf
This commit is contained in:
Joseph Henry
2017-08-25 11:25:04 -07:00
committed by GitHub

View File

@@ -97,9 +97,9 @@ namespace ZeroTier {
{ {
vtaps.push_back((void*)this); vtaps.push_back((void*)this);
// set interface name // set interface name
char tmp3[17]; char tmp3[64];
ifindex = devno; ifindex = devno;
sprintf(tmp3, "libzt%d-%lx", devno++, _nwid); snprintf(tmp3, 64, "libzt%d-%lx", devno++, _nwid);
_dev = tmp3; _dev = tmp3;
DEBUG_INFO("set VirtualTap interface name to: %s", _dev.c_str()); DEBUG_INFO("set VirtualTap interface name to: %s", _dev.c_str());
_thread = Thread::start(this); _thread = Thread::start(this);