remove dead condition

This commit is contained in:
Pierre Tachoire
2026-07-23 11:12:50 +02:00
parent 45c8f7499c
commit b90d9def84

View File

@@ -782,7 +782,7 @@ fn storeFromSystemCA(allocator: Allocator) !*crypto.X509_STORE {
}) |file| {
if (crypto.X509_STORE_load_locations(store, file, null) == 1) {
count += 1;
if (count > 0) break :blk;
break :blk;
}
}
},