Re: [PATCH] Fix harmless uninitialized read in svn_fs_fs__l2p_index_append

2020-07-26 Thread Nathan Hartman
On Sat, Jul 25, 2020 at 7:27 PM Orivej Desh wrote: > > Clang 10 memory sanitizer reports an uninitialized read of .offset in > if ((entry > 0 && proto_entry.offset == 0) || eof) > when read_l2p_entry_from_proto_index set eof and left the proto_entry unset. Thanks for your patches! +1 to com

Re: [PATCH] Fix harmless uninitialized read in svn_fs_fs__l2p_index_append

2020-07-26 Thread Orivej Desh
* Daniel Shahaf [2020-07-27] > Orivej Desh wrote on Sat, 25 Jul 2020 23:27 +: > > Clang 10 memory sanitizer reports an uninitialized read of .offset in > > if ((entry > 0 && proto_entry.offset == 0) || eof) > > when read_l2p_entry_from_proto_index set eof and left the proto_entry unset. >

Re: [PATCH] Fix harmless uninitialized read in svn_fs_fs__l2p_index_append

2020-07-26 Thread Daniel Shahaf
Orivej Desh wrote on Sat, 25 Jul 2020 23:27 +: > Clang 10 memory sanitizer reports an uninitialized read of .offset in > if ((entry > 0 && proto_entry.offset == 0) || eof) > when read_l2p_entry_from_proto_index set eof and left the proto_entry unset. Orivej Desh wrote on Sat, 25 Jul 2020