Kaydet (Commit) e453ba96 authored tarafından Noel Grandin's avatar Noel Grandin

cid#707661 uninitialized pointer field

Change-Id: I6fee8665ce1875ffa8e01bd395bb91a3d2bb40c8
üst de476d01
...@@ -38,6 +38,7 @@ BinaryAny::BinaryAny(css::uno::TypeDescription const & type, void * value) ...@@ -38,6 +38,7 @@ BinaryAny::BinaryAny(css::uno::TypeDescription const & type, void * value)
{ {
assert(type.is()); assert(type.is());
uno_any_construct(&data_, value, type.get(), 0); uno_any_construct(&data_, value, type.get(), 0);
data_.pReserved = NULL;
} }
BinaryAny::BinaryAny(uno_Any const & raw) throw () { BinaryAny::BinaryAny(uno_Any const & raw) throw () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment