summaryrefslogtreecommitdiff
path: root/binaryurp
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-12 12:34:58 +0200
committerNoel Grandin <noel@peralex.com>2014-02-12 15:10:47 +0200
commit5523275482686d1e49e9b5dcf70b1c8451628f6c (patch)
tree762211445ff74ecb824545e3535fb78be21e04ed /binaryurp
parente453ba963e624eb6829abc28beb0abe4c92be30c (diff)
cid#707662 uninitialized pointer field
Change-Id: I031497ef2f789a87724357b28e5fed70afa46dcc
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 6ca4e69e637a..6540fc3724a8 100644
--- a/binaryurp/source/binaryany.cxx
+++ b/binaryurp/source/binaryany.cxx
@@ -51,6 +51,7 @@ BinaryAny::BinaryAny(uno_Any const & raw) throw () {
BinaryAny::BinaryAny(BinaryAny const & other) throw () {
uno_type_any_construct(&data_, other.data_.pData, other.data_.pType, 0);
+ data_.pReserved = NULL;
}
BinaryAny::~BinaryAny() throw () {