summaryrefslogtreecommitdiffstats
path: root/url/url_util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'url/url_util.cc')
-rw-r--r--url/url_util.cc2
1 files changed, 2 insertions, 0 deletions
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 <string.h>
#include <vector>
+#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();