summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/worker.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/worker.cc b/libs/ardour/worker.cc
index 8b9427bbbd..67fede4613 100644
--- a/libs/ardour/worker.cc
+++ b/libs/ardour/worker.cc
@@ -168,11 +168,11 @@ Worker::run()
if (buf) {
buf_size = size;
} else {
- PBD::error << "Worker: Error allocating memory"
- << endmsg;
- buf_size = 0; // TODO: This is probably fatal
+ PBD::fatal << "Worker: Error allocating memory" << endmsg;
+ abort(); /*NOTREACHED*/
}
}
+ assert (buf);
if (_requests->read((uint8_t*)buf, size) < size) {
PBD::error << "Worker: Error reading body from request ring"