<html><head><meta http-equiv="Content-Type" content="text/html; charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Oh, sorry, my bad.  Based on <<a href="https://bugs.llvm.org/show_bug.cgi?id=34085" class="">https://bugs.llvm.org/show_bug.cgi?id=34085</a>>, I thought the bug is in release_50, but I guess it's not.<div class=""><br class=""></div><div class="">Sorry for the noise here!</div><div class=""><br class=""></div><div class="">Kuba<br class=""><div><br class=""><blockquote type="cite" class=""><div class="">On 7 Aug 2017, at 13:39, Hans Wennborg via llvm-commits <<a href="mailto:llvm-commits@lists.llvm.org" class="">llvm-commits@lists.llvm.org</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="">On Mon, Aug 7, 2017 at 9:24 AM, Kuba Mracek <<a href="mailto:mracek@apple.com" class="">mracek@apple.com</a>> wrote:<br class=""><blockquote type="cite" class="">Please merge into relase_50.<br class=""></blockquote><br class="">r309914 is not on the branch, so why should this one be merged?<br class=""><br class=""><blockquote type="cite" class="">How "open" is the release_50 branch?  Can I just merge important commits directly, or should I always CC Hans?<br class=""></blockquote><br class="">See <a href="http://lists.llvm.org/pipermail/llvm-dev/2017-July/115594.html" class="">http://lists.llvm.org/pipermail/llvm-dev/2017-July/115594.html</a><br class="">Always ask me first. The easiest is to cc me on the commit email like<br class="">this one. For non-trivial changes the person in CODE_OWNERS.txt should<br class="">also sign off.<br class=""><br class="">And please try to include a rationale with the merge request unless<br class="">it's an obvious fix.<br class=""><br class="">Thanks,<br class="">Hans<br class=""><br class=""><blockquote type="cite" class=""><blockquote type="cite" class="">On 7 Aug 2017, at 02:08, Vitaly Buka via llvm-commits <<a href="mailto:llvm-commits@lists.llvm.org" class="">llvm-commits@lists.llvm.org</a>> wrote:<br class=""><br class="">Author: vitalybuka<br class="">Date: Mon Aug  7 02:08:44 2017<br class="">New Revision: 310244<br class=""><br class="">URL: <a href="http://llvm.org/viewvc/llvm-project?rev=310244&view=rev" class="">http://llvm.org/viewvc/llvm-project?rev=310244&view=rev</a><br class="">Log:<br class="">[asan] Return sizeof missed by r309914<br class=""><br class="">Modified:<br class="">   compiler-rt/trunk/lib/asan/<a href="http://asan_malloc_linux.cc" class="">asan_malloc_linux.cc</a><br class=""><br class="">Modified: compiler-rt/trunk/lib/asan/<a href="http://asan_malloc_linux.cc" class="">asan_malloc_linux.cc</a><br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_malloc_linux.cc?rev=310244&r1=310243&r2=310244&view=diff" class="">http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_malloc_linux.cc?rev=310244&r1=310243&r2=310244&view=diff</a><br class="">==============================================================================<br class="">--- compiler-rt/trunk/lib/asan/<a href="http://asan_malloc_linux.cc" class="">asan_malloc_linux.cc</a> (original)<br class="">+++ compiler-rt/trunk/lib/asan/<a href="http://asan_malloc_linux.cc" class="">asan_malloc_linux.cc</a> Mon Aug  7 02:08:44 2017<br class="">@@ -32,7 +32,7 @@ static uptr alloc_memory_for_dlsym[kDlsy<br class=""><br class="">static INLINE bool IsInDlsymAllocPool(const void *ptr) {<br class="">  uptr off = (uptr)ptr - (uptr)alloc_memory_for_dlsym;<br class="">-  return off < allocated_for_dlsym;<br class="">+  return off < sizeof(alloc_memory_for_dlsym);<br class="">}<br class=""><br class="">static void *AllocateFromLocalPool(uptr size_in_bytes) {<br class=""><br class=""><br class="">_______________________________________________<br class="">llvm-commits mailing list<br class=""><a href="mailto:llvm-commits@lists.llvm.org" class="">llvm-commits@lists.llvm.org</a><br class="">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits<br class=""></blockquote><br class=""></blockquote>_______________________________________________<br class="">llvm-commits mailing list<br class=""><a href="mailto:llvm-commits@lists.llvm.org" class="">llvm-commits@lists.llvm.org</a><br class="">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits<br class=""></div></div></blockquote></div><br class=""></div></body></html>