diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/protocols/guppyclient.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/protocols/guppyclient.cpp b/src/protocols/guppyclient.cpp index 52417f3..d07ce23 100644 --- a/src/protocols/guppyclient.cpp +++ b/src/protocols/guppyclient.cpp @@ -38,7 +38,9 @@ bool GuppyClient::startRequest(const QUrl &url, RequestOptions options) this->requested_url = url; this->was_cancelled = false; - this->prev_seq = this->first_seq = this->last_seq = 0; + this->prev_seq = 0; + this->first_seq = 0; + this->last_seq = 0; this->socket.connectToHost(url.host(), url.port(6775)); return true; |
