mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-16 15:01:15 +02:00
bugfix: _null member not initialized in ctor
This commit is contained in:
parent
68e3676ddc
commit
89998df17a
@ -90,7 +90,8 @@ public:
|
||||
AbstractExtraction(Limit::LIMIT_UNLIMITED, pos.value()),
|
||||
_rResult(rResult),
|
||||
_default(),
|
||||
_extracted(false)
|
||||
_extracted(false),
|
||||
_null(false)
|
||||
/// Creates an Extraction object at specified position.
|
||||
/// Uses an empty object T as default value.
|
||||
{
|
||||
@ -100,7 +101,8 @@ public:
|
||||
AbstractExtraction(Limit::LIMIT_UNLIMITED, pos.value()),
|
||||
_rResult(rResult),
|
||||
_default(def),
|
||||
_extracted(false)
|
||||
_extracted(false),
|
||||
_null(false)
|
||||
/// Creates an Extraction object at specified position.
|
||||
/// Uses the provided def object as default value.
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user