diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-15 20:46:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-16 11:23:12 +0100 |
commit | 98ef587cb1515e8c495cf00a3b143201233b8e25 (patch) | |
tree | 324fbff2dd5044472369b1414d87e8d18cfec734 /tools/source | |
parent | 4f3e5fdf3564ebbf2f5b8c425bbe2f64f64e01b7 (diff) |
coverity#1202967 Uninitialized pointer field
Change-Id: I60fb3b74d7f4d430776f53c2f4b37c63a0e5166d
Diffstat (limited to 'tools/source')
-rw-r--r-- | tools/source/inet/inetmsg.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/source/inet/inetmsg.cxx b/tools/source/inet/inetmsg.cxx index 25434033d717..d1571d95970f 100644 --- a/tools/source/inet/inetmsg.cxx +++ b/tools/source/inet/inetmsg.cxx @@ -678,6 +678,7 @@ INetMIMEMessage::INetMIMEMessage() INetMIMEMessage::INetMIMEMessage (const INetMIMEMessage& rMsg) : INetRFC822Message (rMsg) + , pParent(NULL) { CopyImp (rMsg); } |