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

Unified Diff: sandbox/win/src/sync_policy.cc

Issue 1410333006: Enough hacks to make wstring printfs unneeded (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
Index: sandbox/win/src/sync_policy.cc
diff --git a/sandbox/win/src/sync_policy.cc b/sandbox/win/src/sync_policy.cc
index 379e8f455df16bd4e8e77ad87b11af85501aa28c..4291797195254235ae449b714b5c110d82434591 100644
--- a/sandbox/win/src/sync_policy.cc
+++ b/sandbox/win/src/sync_policy.cc
@@ -99,9 +99,9 @@ NTSTATUS GetBaseNamedObjectsDirectory(HANDLE* directory) {
base::string16 base_named_objects_path;
- NTSTATUS status = ResolveSymbolicLink(L"\\Sessions\\BNOLINKS",
+ NTSTATUS status = 0;/* ResolveSymbolicLink(L"\\Sessions\\BNOLINKS",
base::StringPrintf(L"%d", session_id),
- &base_named_objects_path);
+ &base_named_objects_path);*/
if (!NT_SUCCESS(status)) {
DLOG(ERROR) << "Failed to resolve BaseNamedObjects path. Error: "
<< status;

Powered by Google App Engine
This is Rietveld 408576698