Merge pull request #708 from JuanPotato/patch-3

Fix when crashing if print_name is null
This commit is contained in:
vysheng 2015-07-30 13:08:18 +03:00
commit a4758e8c11

View File

@ -111,8 +111,11 @@ json_t *json_pack_peer (tgl_peer_id_t id) {
assert (json_object_set (res, "print_name", json_string (s)) >= 0);
return res;
}
if(P->print_name != NULL){
assert (json_object_set (res, "print_name", json_string (P->print_name)) >= 0);
} else {
assert (json_object_set (res, "print_name", json_string ("")) >= 0);
}
assert (json_object_set (res, "flags", json_integer (P->flags)) >= 0);
switch (tgl_get_peer_type (id)) {