Minor cleanup
This commit is contained in:
parent
82ac450b4b
commit
078470ce64
@ -34,6 +34,7 @@
|
|||||||
|
|
||||||
struct adc_message* adc_msg_incref(struct adc_message* msg)
|
struct adc_message* adc_msg_incref(struct adc_message* msg)
|
||||||
{
|
{
|
||||||
|
if (!msg) return 0;
|
||||||
#ifndef ADC_MESSAGE_INCREF
|
#ifndef ADC_MESSAGE_INCREF
|
||||||
msg->references++;
|
msg->references++;
|
||||||
return msg;
|
return msg;
|
||||||
|
@ -112,14 +112,7 @@ void user_set_state(struct user* user, enum user_state state)
|
|||||||
void user_set_info(struct user* user, struct adc_message* cmd)
|
void user_set_info(struct user* user, struct adc_message* cmd)
|
||||||
{
|
{
|
||||||
adc_msg_free(user->info);
|
adc_msg_free(user->info);
|
||||||
if (cmd)
|
user->info = adc_msg_incref(cmd);
|
||||||
{
|
|
||||||
user->info = adc_msg_incref(cmd);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
user->info = 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user