Skip to content

Commit

Permalink
Ensure proxy works after last PID is 65536
Browse files Browse the repository at this point in the history
Workaround fix for TelegramMessenger#41
  • Loading branch information
dvershinin committed Jun 19, 2021
1 parent 6244f1d commit 1268005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/pid.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ npid_t PID;
void init_common_PID (void) {
if (!PID.pid) {
int p = getpid ();
assert (!(p & 0xffff0000));
// assert (!(p & 0xffff0000));
PID.pid = p;
}
if (!PID.utime) {
Expand Down

0 comments on commit 1268005

Please sign in to comment.