Skip to content

Commit 40c2b3c

Browse files
authored
Merge branch 'codeql-cli-2.11.4' into subatoi/codeql-cli-2.11.4
2 parents 093ff40 + 545c2f6 commit 40c2b3c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

swift/extractor/SwiftExtractor.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ static void archiveFile(const SwiftExtractorConfiguration& config, swift::Source
4646
if (ec) {
4747
std::cerr << "Cannot archive source file " << srcFilePath << " -> " << dstFilePath << ": "
4848
<< ec.message() << "\n";
49-
std::abort();
5049
}
5150
}
5251

swift/extractor/remapping/SwiftOpenInterception.macOS.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void finalizeRemapping(
6161
}
6262
auto hash = originalHashFile(original);
6363
auto hashed = scratchDir / hash;
64-
if (!hash.empty() && fs::exists(hashed)) {
64+
if (!hash.empty() && fs::exists(patched)) {
6565
std::error_code ec;
6666
fs::create_symlink(/* target */ patched, /* symlink */ hashed, ec);
6767
if (ec) {

0 commit comments

Comments
 (0)