From 8d892fa8aa54d8c29444ce0058f69b96ce025639 Mon Sep 17 00:00:00 2001 From: "eustas@chromium.org" Date: Wed, 2 Jul 2014 12:42:04 +0000 Subject: Annotate leak. Comments in code say that this is intentional leak. BUG=390498 Review URL: https://codereview.chromium.org/360263002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@281004 0039d316-1c4b-4281-b951-d872f2087c98 --- url/url_util.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'url/url_util.cc') diff --git a/url/url_util.cc b/url/url_util.cc index 9f2ad2c..8ab889f 100644 --- a/url/url_util.cc +++ b/url/url_util.cc @@ -7,6 +7,7 @@ #include #include +#include "base/debug/leak_annotations.h" #include "base/logging.h" #include "url/url_canon_internal.h" #include "url/url_file.h" @@ -383,6 +384,7 @@ void AddStandardScheme(const char* new_scheme) { // Dulicate the scheme into a new buffer and add it to the list of standard // schemes. This pointer will be leaked on shutdown. char* dup_scheme = new char[scheme_len + 1]; + ANNOTATE_LEAKING_OBJECT_PTR(dup_scheme); memcpy(dup_scheme, new_scheme, scheme_len + 1); InitStandardSchemes(); -- cgit v1.1