Skip to content

Commit e364eba

Browse files
author
Ryzerth
committed
Fixed crash when starting with no source
1 parent 1a42421 commit e364eba

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/io/soapy.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ namespace io {
1818
}
1919

2020
void start() {
21+
if (devList.size() == 0) {
22+
return;
23+
}
2124
if (running) {
2225
return;
2326
}

0 commit comments

Comments
 (0)