diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/propertysequence.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/comphelper/propertysequence.hxx b/include/comphelper/propertysequence.hxx index 7cd9494082c2..62f9588abac5 100644 --- a/include/comphelper/propertysequence.hxx +++ b/include/comphelper/propertysequence.hxx @@ -26,7 +26,9 @@ namespace comphelper for(const auto& aEntry : vInit) { vResult[nCount].Name = aEntry.first; + vResult[nCount].Handle = -1; vResult[nCount].Value = aEntry.second; + // State is default-initialized to DIRECT_VALUE ++nCount; } return vResult; |