Skip to content

Commit

Permalink
Merge pull request #250 from bitshares/update-unpack-static-variant
Browse files Browse the repository at this point in the history
Avoid potential corruption during unpack of static_variant
  • Loading branch information
abitmore committed Feb 6, 2024
2 parents 3ea07ea + 2d73734 commit 9060dbc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions include/fc/io/raw.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -889,8 +889,9 @@ namespace fc {
--_max_depth;
unsigned_int w;
fc::raw::unpack( s, w, _max_depth );
sv.set_which(w.value);
sv.visit( unpack_static_variant<Stream>( s, _max_depth ) );
static_variant<T...> helper( static_cast<typename static_variant<T...>::tag_type>(w.value) );
helper.visit( unpack_static_variant<Stream>( s, _max_depth ) );
sv = helper;
}

} } // namespace fc::raw
Expand Down

0 comments on commit 9060dbc

Please sign in to comment.