From 59483003016174da90069c8094e36d7a00478b39 Mon Sep 17 00:00:00 2001 From: Peter Howkins Date: Sun, 11 Mar 2012 23:38:55 +0000 Subject: [PATCH] On Linux initialise tt_strings as () rather than (NULL) --- cde/lib/tt/lib/mp/mp_message.C | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cde/lib/tt/lib/mp/mp_message.C b/cde/lib/tt/lib/mp/mp_message.C index c353ce94..34e5b4a0 100644 --- a/cde/lib/tt/lib/mp/mp_message.C +++ b/cde/lib/tt/lib/mp/mp_message.C @@ -118,9 +118,15 @@ base_constructor() _Tt_message:: _Tt_message() +#if defined(linux) +: _pattern_id(), _object(), _file(), _op(), + _otype(), _sender_ptype(), _handler_ptype(), + _api_id(), _status_string() +#else : _pattern_id(NULL), _object(NULL), _file(NULL), _op(NULL), _otype(NULL), _sender_ptype(NULL), _handler_ptype(NULL), _api_id(NULL), _status_string(NULL) +#endif { base_constructor(); } -- 2.25.1