Skip to content

Commit ec25a48

Browse files
committed
auto_configure: handle error when parsing streaming control start signal
This amends #145 Signed-off-by: Peter Colberg <[email protected]>
1 parent 2f4db1e commit ec25a48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/acl_auto_configure.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -675,8 +675,8 @@ static bool read_streaming_kernel_control_info(
675675
if (result && streaming_control_info_available) {
676676
streaming_control_info = acl_streaming_kernel_control_info{};
677677
result = read_string_counters(config_str, curr_pos,
678-
streaming_control_info.start, counters);
679-
result = read_string_counters(config_str, curr_pos,
678+
streaming_control_info.start, counters) &&
679+
read_string_counters(config_str, curr_pos,
680680
streaming_control_info.done, counters);
681681
}
682682

0 commit comments

Comments
 (0)