diff options
Diffstat (limited to 'protocols/bee_user.c')
| -rw-r--r-- | protocols/bee_user.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/bee_user.c b/protocols/bee_user.c index 71b15d29..1f9b1b47 100644 --- a/protocols/bee_user.c +++ b/protocols/bee_user.c @@ -222,7 +222,7 @@ void imcb_buddy_status_msg( struct im_connection *ic, const char *handle, const  	old = g_memdup( bu, sizeof( bee_user_t ) ); -	bu->status_msg = g_strdup( message ); +	bu->status_msg = message && *message ? g_strdup( message ) : NULL;  	if( bee->ui->user_status )  		bee->ui->user_status( bee, bu, old );  | 
