diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-02-12 20:07:50 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-02-12 20:26:41 +0100 |
commit | c3891d88fc12055298f9d197d4ddfcb1dab9647b (patch) | |
tree | 0bc5f88a04108c326ac44ad4f49fb570436d5e79 /binaryurp | |
parent | 6fa0b370472d7cf59ea26ac91a1a5c5d3291d0ce (diff) |
Revert "cid#707661 uninitialized pointer field"
This reverts commit e453ba963e624eb6829abc28beb0abe4c92be30c.
Makes every JunitTest crash and burn; clearly pReserved is sometimes
initialized and then overwritten with 0.
Change-Id: I4d280770cecf131d1bbcfb9e2550c89b74150c1d
Diffstat (limited to 'binaryurp')
-rw-r--r-- | binaryurp/source/binaryany.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/binaryurp/source/binaryany.cxx b/binaryurp/source/binaryany.cxx index 66a1a3816412..5dbf87b56808 100644 --- a/binaryurp/source/binaryany.cxx +++ b/binaryurp/source/binaryany.cxx @@ -39,7 +39,6 @@ BinaryAny::BinaryAny(css::uno::TypeDescription const & type, void * value) { assert(type.is()); uno_any_construct(&data_, value, type.get(), 0); - data_.pReserved = NULL; } BinaryAny::BinaryAny(uno_Any const & raw) throw () { |