diff options
| author | Joel Klinghed <the_jk@yahoo.com> | 2017-08-08 23:26:26 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@yahoo.com> | 2017-08-08 23:26:26 +0200 |
| commit | b8112a1304e36dc8a308d2b09d5cd49c9271b2cc (patch) | |
| tree | f345645eea8a08551553792f6fc25c45c9c0e783 | |
| parent | a3eff51086db3e19b0ff81dbc810f621eb041991 (diff) | |
Avoid warning in GCC
| -rw-r--r-- | src/proxy.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proxy.cc b/src/proxy.cc index e102b81..c67b0df 100644 --- a/src/proxy.cc +++ b/src/proxy.cc @@ -2231,6 +2231,8 @@ size_t ProxyImpl::MitmMonitor::handle_http_data(Content* content, return size; } } + assert(false); + return 0; } } // namespace |
