Fixed set of real_name of uninitialezed user

This commit is contained in:
vvaltman 2014-09-08 23:18:51 +04:00
parent 22c37ffe53
commit cfce332075

View File

@ -266,7 +266,9 @@ void tglf_fetch_user_full (struct tgl_user *U) {
char *s1 = fetch_str (l1); char *s1 = fetch_str (l1);
int l2 = prefetch_strlen (); int l2 = prefetch_strlen ();
char *s2 = fetch_str (l2); char *s2 = fetch_str (l2);
if (U && (U->flags & FLAG_CREATED)) {
bl_do_user_set_real_name (U, s1, l1, s2, l2); bl_do_user_set_real_name (U, s1, l1, s2, l2);
}
} }
void tglf_fetch_encrypted_chat (struct tgl_secret_chat *U) { void tglf_fetch_encrypted_chat (struct tgl_secret_chat *U) {