NSM: Fix uninitialized value error with client labels.
This commit is contained in:
parent
1f9c2bbb6a
commit
553db45e8b
|
@ -127,7 +127,10 @@ public:
|
|||
{
|
||||
if ( _label )
|
||||
free( _label );
|
||||
_label = strdup( l );
|
||||
if ( l )
|
||||
_label = strdup( l );
|
||||
else
|
||||
_label = NULL;
|
||||
}
|
||||
|
||||
bool gui_visible ( void ) const
|
||||
|
@ -210,6 +213,7 @@ public:
|
|||
|
||||
Client ( )
|
||||
{
|
||||
_label = 0;
|
||||
_gui_visible = true;
|
||||
addr = 0;
|
||||
_reply_errcode = 0;
|
||||
|
|
Loading…
Reference in New Issue