diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-10-02 16:19:46 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-10-25 13:00:43 +0200 |
commit | 7f160a29a0fcfc1d8150cdde1d9a2d2dbf29216b (patch) | |
tree | 44f7717f80c719dbbcb38eee09965aa97f25626b | |
parent | 36ea313c98683f0b78b9817a96a54ace6bf4c519 (diff) | |
download | justbuild-7f160a29a0fcfc1d8150cdde1d9a2d2dbf29216b.tar.gz |
content_cas_map: Fix missing return after logging fatal
-rw-r--r-- | src/other_tools/ops_maps/content_cas_map.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/other_tools/ops_maps/content_cas_map.cpp b/src/other_tools/ops_maps/content_cas_map.cpp index 0e13cd8e..ebec2b04 100644 --- a/src/other_tools/ops_maps/content_cas_map.cpp +++ b/src/other_tools/ops_maps/content_cas_map.cpp @@ -227,6 +227,7 @@ auto CreateContentCASMap( "to local CAS", key.content_hash.Hash()), /*fatal=*/true); + return; } // content stored in CAS (*setter)(nullptr); |