From e364ebac6d5ab0c32019d189338fa39e1a0ccfdf Mon Sep 17 00:00:00 2001 From: Ryzerth Date: Mon, 20 Jul 2020 18:18:08 +0200 Subject: [PATCH] Fixed crash when starting with no source --- src/io/soapy.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/io/soapy.h b/src/io/soapy.h index c0776929..06ef1a04 100644 --- a/src/io/soapy.h +++ b/src/io/soapy.h @@ -18,6 +18,9 @@ namespace io { } void start() { + if (devList.size() == 0) { + return; + } if (running) { return; }