diff --git a/core/src/dsp/chain.h b/core/src/dsp/chain.h index 1d4e9509..21e2a588 100644 --- a/core/src/dsp/chain.h +++ b/core/src/dsp/chain.h @@ -163,10 +163,12 @@ namespace dsp { private: Processor* blockBefore(Processor* block) { + // TODO: This is wrong and must be fixed when I get more time for (auto& ln : links) { if (ln == block) { return NULL; } if (states[ln]) { return ln; } } + return NULL; } Processor* blockAfter(Processor* block) { diff --git a/core/src/utils/proto/http.cpp b/core/src/utils/proto/http.cpp index 8821f976..528de15b 100644 --- a/core/src/utils/proto/http.cpp +++ b/core/src/utils/proto/http.cpp @@ -257,6 +257,7 @@ namespace net::http { // Deserialize req.deserialize(respData); + return 0; // Might wanna return size instead } int Client::sendResponseHeader(ResponseHeader& resp) { @@ -274,6 +275,7 @@ namespace net::http { // Deserialize resp.deserialize(respData); + return 0; // Might wanna return size instead } int Client::sendChunkHeader(ChunkHeader& chdr) {