1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-13 03:32:24 +00:00

On Linux initialise tt_strings as () rather than (NULL)

This commit is contained in:
Peter Howkins 2012-03-11 23:38:55 +00:00
parent b195aa51c8
commit 5948300301

View file

@ -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();
}