1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-12 02:34:59 +03:00

Merge PR #1134: Fixed that NewDhcpOption can't handle DHCP options longer than 255 bytes

This commit is contained in:
Davide Beatrici
2020-05-22 05:39:54 +02:00
committed by GitHub

View File

@ -3468,8 +3468,8 @@ DHCP_OPTION *NewDhcpOption(UINT id, void *data, UINT size)
ret = ZeroMalloc(sizeof(DHCP_OPTION)); ret = ZeroMalloc(sizeof(DHCP_OPTION));
ret->Data = ZeroMalloc(size); ret->Data = ZeroMalloc(size);
Copy(ret->Data, data, size); Copy(ret->Data, data, size);
ret->Size = (UCHAR)size; ret->Size = size;
ret->Id = (UCHAR)id; ret->Id = id;
return ret; return ret;
} }