summaryrefslogtreecommitdiff
path: root/binaryurp
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-12 12:27:42 +0200
committerNoel Grandin <noel@peralex.com>2014-02-12 15:10:47 +0200
commite453ba963e624eb6829abc28beb0abe4c92be30c (patch)
treea25d0d8aab20f4e036582c707a040dd2d139126d /binaryurp
parentde476d0146dfecf04f7d1630a771751e3f27ced9 (diff)
cid#707661 uninitialized pointer field
Change-Id: I6fee8665ce1875ffa8e01bd395bb91a3d2bb40c8
Diffstat (limited to 'binaryurp')
-rw-r--r--binaryurp/source/binaryany.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/binaryurp/source/binaryany.cxx b/binaryurp/source/binaryany.cxx
index a56663afad2d..6ca4e69e637a 100644
--- a/binaryurp/source/binaryany.cxx
+++ b/binaryurp/source/binaryany.cxx
@@ -38,6 +38,7 @@ 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 () {