Permalink
Please sign in to comment.
Browse files
Merge #9804: Fixes subscript 0 (&var[0]) where should use (var.data()…
…) instead. 30ac768 Fix subscript[0] potential bugs in key.cpp (Jeremy Rubin) 4b1c0f2 Remove unnecessary branches in utilstrencodings string constructors. (Jeremy Rubin) e19db7b Fix subscript[0] in utilstrencodings.cpp (Jeremy Rubin) bc2e7fd Fix subscript[0] in streams.h (Jeremy Rubin) 4cac0d1 Fix subscript[0] in validation.cpp (Jeremy Rubin) ac658e5 Fix subscript[0] in torcontrol (Jeremy Rubin) b6856eb Fix subscript[0] in netaddress.cpp (Jeremy Rubin) 361d952 Fix subscript[0] in base58.cpp (Jeremy Rubin) 6896dbf Cleanup (safe, it was checked) subscript[0] in MurmurHash3 (and cleanup MurmurHash3 to be more clear). (Jeremy Rubin) 96f2119 Fix subscript[0] in compressor.cpp (Jeremy Rubin) 500710b Fix 2 subscript[0] bugs in pubkey.cpp, and eliminate one extra size check (Jeremy Rubin) e0451e3 Fix subscript[0] bug in net.cpp if GetGroup returns a 0-sized vector (Jeremy Rubin) Tree-SHA512: 5b9103652cf8c615bd8f4f32b3573d291d6b67c39e0308ce00100bc6625f346e8e016b4c999f4f34f5c37ae059490a83c3b513deb21f838af785227d06e02362
- Loading branch information...
Showing
with
51 additions
and 57 deletions.
- +6 −6 src/base58.cpp
- +1 −1 src/base58.h
- +4 −4 src/compressor.cpp
- +20 −23 src/hash.cpp
- +5 −5 src/key.cpp
- +1 −1 src/net.cpp
- +1 −1 src/netaddress.cpp
- +2 −5 src/pubkey.cpp
- +6 −6 src/serialize.h
- +1 −1 src/streams.h
- +1 −1 src/torcontrol.cpp
- +2 −2 src/utilstrencodings.cpp
- +1 −1 src/validation.cpp
43
src/hash.cpp
10
src/key.cpp
0 comments on commit
479afa0