Skip to content

Commit

Permalink
Merge 389b372 into e483257
Browse files Browse the repository at this point in the history
  • Loading branch information
ahf committed Oct 17, 2019
2 parents e483257 + 389b372 commit 60f75a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 3 additions & 0 deletions changes/ticket31091
@@ -0,0 +1,3 @@
o Minor bugfixes (pluggable transports):
- Remove overly strict assertions that triggers when a pluggable transport
is spawned in an unsuccessful manner. Fixes bug 31091; bugfix on 0.4.0.1-alpha.
6 changes: 2 additions & 4 deletions src/feature/client/transports.c
Expand Up @@ -1826,15 +1826,13 @@ managed_proxy_stdout_callback(process_t *process,

managed_proxy_t *mp = process_get_data(process);

if (BUG(mp == NULL))
if (mp == NULL)
return;

handle_proxy_line(line, mp);

if (proxy_configuration_finished(mp)) {
if (proxy_configuration_finished(mp))
handle_finished_proxy(mp);
tor_assert(mp->conf_state == PT_PROTO_COMPLETED);
}
}

/** Callback function that is called when our PT process have data on its
Expand Down

0 comments on commit 60f75a0

Please sign in to comment.