diff options
author | Francis Dupont <fdupont@isc.org> | 2015-06-24 12:39:36 +0200 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2015-06-24 12:39:36 +0200 |
commit | b1232181d121005b56339f7b35442f700c34da4e (patch) | |
tree | a03099350d8563d83e154c8f01cea5af7e2b5ebe /src/lib/dhcpsrv/lease.h | |
parent | [master] Updated git hash (diff) | |
download | kea-b1232181d121005b56339f7b35442f700c34da4e.tar.xz kea-b1232181d121005b56339f7b35442f700c34da4e.zip |
[3919] Initialize ext_
Diffstat (limited to 'src/lib/dhcpsrv/lease.h')
-rw-r--r-- | src/lib/dhcpsrv/lease.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/dhcpsrv/lease.h b/src/lib/dhcpsrv/lease.h index a4faeee3c8..082c8de438 100644 --- a/src/lib/dhcpsrv/lease.h +++ b/src/lib/dhcpsrv/lease.h @@ -246,7 +246,8 @@ struct Lease4 : public Lease { /// @brief Default constructor /// /// Initialize fields that don't have a default constructor. - Lease4() : Lease(0, 0, 0, 0, 0, 0, false, false, "", HWAddrPtr()) { + Lease4() : Lease(0, 0, 0, 0, 0, 0, false, false, "", HWAddrPtr()), ext_(0) + { } /// @brief Copy constructor |