Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(369)

Unified Diff: ceee/ie/plugin/bho/browser_helper_object.cc

Issue 6268013: Removed error log message on empty string. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ceee/ie/plugin/bho/browser_helper_object.cc
===================================================================
--- ceee/ie/plugin/bho/browser_helper_object.cc (revision 72381)
+++ ceee/ie/plugin/bho/browser_helper_object.cc (working copy)
@@ -127,7 +127,7 @@
reinterpret_cast<wchar_t*>(&bho_list), 0);
if (bho_list == NULL) {
LOG(ERROR) << "Failed to load string: " << GetLastError();
- } else {
+ } else if (wcslen(bho_list) > 0) {
std::vector<std::wstring> guids;
base::SplitString(bho_list, ',', &guids);
for (size_t i = 0; i < guids.size(); ++i) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698