[lowpan] fix uninitialized variable warnings (#2126)

This commit is contained in:
Jonathan Hui
2017-08-22 18:44:32 -07:00
committed by GitHub
parent 3523796722
commit df09fc84a4
+6
View File
@@ -391,6 +391,12 @@ OT_TOOL_PACKED_BEGIN
class FragmentHeader
{
public:
/**
* This constructor initializes the Fragment Header.
*
*/
FragmentHeader(void) { mDispatchSize = HostSwap16(kDispatch); mTag = 0; mOffset = 0; }
/**
* This method initializes the Fragment Header.
*