Commit 8f4f808d authored by vysheng's avatar vysheng

fixed login

parent b5bf72f1
...@@ -391,14 +391,14 @@ char *phone_code_hash; ...@@ -391,14 +391,14 @@ char *phone_code_hash;
int send_code_on_answer (struct query *q UU) { int send_code_on_answer (struct query *q UU) {
assert (fetch_int () == (int)CODE_auth_sent_code); assert (fetch_int () == (int)CODE_auth_sent_code);
fetch_bool (); fetch_bool ();
fetch_int ();
fetch_bool ();
int l = prefetch_strlen (); int l = prefetch_strlen ();
char *s = fetch_str (l); char *s = fetch_str (l);
if (phone_code_hash) { if (phone_code_hash) {
tfree_str (phone_code_hash); tfree_str (phone_code_hash);
} }
phone_code_hash = tstrndup (s, l); phone_code_hash = tstrndup (s, l);
fetch_int ();
fetch_bool ();
want_dc_num = -1; want_dc_num = -1;
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment