<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jan 7, 2015 at 1:21 PM, Frédéric Riss <span dir="ltr"><<a href="mailto:friss@apple.com" target="_blank">friss@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
> On Jan 7, 2015, at 1:13 PM, Alexey Samsonov <<a href="mailto:vonosmas@gmail.com">vonosmas@gmail.com</a>> wrote:<br>
><br>
> Author: samsonov<br>
> Date: Wed Jan  7 15:13:30 2015<br>
> New Revision: 225386<br>
><br>
> URL: <a href="http://llvm.org/viewvc/llvm-project?rev=225386&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=225386&view=rev</a><br>
> Log:<br>
> Fix uninitialized memory read in llvm-dsymutil for the second time.<br>
><br>
> This was already fixed by r224481, but apparently was accidentally<br>
> reverted in r225207.<br>
<br>
</span>Thanks and sorry about that, I must have messed up the merge when rebasing (although I don’t remember having to merge at all...). I suppose this got caught by the ASAN bots, don’t they send mail notifications, because I didn’t get anything?<br></blockquote><div><br></div><div>Right, this was caught by MSan bootstrap bot, but it didn't send notification because of pre-existing failures. I will hopefully make it back green soon.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Fred<br>
<div class="HOEnZb"><div class="h5"><br>
> Modified:<br>
>    llvm/trunk/tools/dsymutil/MachODebugMapParser.cpp<br>
><br>
> Modified: llvm/trunk/tools/dsymutil/MachODebugMapParser.cpp<br>
> URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/dsymutil/MachODebugMapParser.cpp?rev=225386&r1=225385&r2=225386&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/dsymutil/MachODebugMapParser.cpp?rev=225386&r1=225385&r2=225386&view=diff</a><br>
> ==============================================================================<br>
> --- llvm/trunk/tools/dsymutil/MachODebugMapParser.cpp (original)<br>
> +++ llvm/trunk/tools/dsymutil/MachODebugMapParser.cpp Wed Jan  7 15:13:30 2015<br>
> @@ -24,7 +24,8 @@ public:<br>
>   MachODebugMapParser(StringRef BinaryPath, StringRef PathPrefix = "",<br>
>                       bool Verbose = false)<br>
>       : BinaryPath(BinaryPath), PathPrefix(PathPrefix),<br>
> -        MainBinaryHolder(Verbose), CurrentObjectHolder(Verbose) {}<br>
> +        MainBinaryHolder(Verbose), CurrentObjectHolder(Verbose),<br>
> +        CurrentDebugMapObject(nullptr) {}<br>
><br>
>   /// \brief Parses and returns the DebugMap of the input binary.<br>
>   /// \returns an error in case the provided BinaryPath doesn't exist<br>
><br>
><br>
> _______________________________________________<br>
> llvm-commits mailing list<br>
> <a href="mailto:llvm-commits@cs.uiuc.edu">llvm-commits@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits</a><br>
<br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr">Alexey Samsonov<br><a href="mailto:vonosmas@gmail.com" target="_blank">vonosmas@gmail.com</a></div></div>
</div></div>