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

Unified Diff: ui/base/dragdrop/os_exchange_data_provider_win.cc

Issue 7778008: Truncate file name longer than MAX_PATH(260) on D2D (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Take leading MAX_PATH-1 instead of considering file extension Created 9 years, 3 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: ui/base/dragdrop/os_exchange_data_provider_win.cc
diff --git a/ui/base/dragdrop/os_exchange_data_provider_win.cc b/ui/base/dragdrop/os_exchange_data_provider_win.cc
index 3ecbefa33ae8cddf3af54c9ddd2258187e3f0922..ad6d308945db1b4f7ef16a678a9c55bebe096e5b 100644
--- a/ui/base/dragdrop/os_exchange_data_provider_win.cc
+++ b/ui/base/dragdrop/os_exchange_data_provider_win.cc
@@ -4,6 +4,9 @@
#include "ui/base/dragdrop/os_exchange_data_provider_win.h"
+#include <algorithm>
+#include <vector>
+
#include "base/file_path.h"
#include "base/i18n/file_util_icu.h"
#include "base/logging.h"
@@ -124,7 +127,7 @@ STDMETHODIMP FormatEtcEnumerator::Next(
ULONG count, FORMATETC* elements_array, ULONG* elements_fetched) {
// MSDN says |elements_fetched| is allowed to be NULL if count is 1.
if (!elements_fetched)
- DCHECK(count == 1);
+ DCHECK_EQ(count, 1ul);
// This method copies count elements into |elements_array|.
ULONG index = 0;
@@ -403,7 +406,7 @@ bool OSExchangeDataProviderWin::GetPickledData(CLIPFORMAT format,
if (SUCCEEDED(source_object_->GetData(&format_etc, &medium))) {
if (medium.tymed & TYMED_HGLOBAL) {
base::win::ScopedHGlobal<char> c_data(medium.hGlobal);
- DCHECK(c_data.Size() > 0);
+ DCHECK_GT(c_data.Size(), 0u);
// Need to subtract 1 as SetPickledData adds an extra byte to the end.
*data = Pickle(c_data.get(), static_cast<int>(c_data.Size() - 1));
success = true;
@@ -903,35 +906,33 @@ static STGMEDIUM* GetStorageForFileName(const FilePath& path) {
STGMEDIUM* storage = new STGMEDIUM;
storage->tymed = TYMED_HGLOBAL;
- storage->hGlobal = drop_files;
+ storage->hGlobal = hdata;
storage->pUnkForRelease = NULL;
return storage;
}
static STGMEDIUM* GetStorageForFileDescriptor(
const FilePath& path) {
- string16 valid_file_name = path.value();
- DCHECK(!valid_file_name.empty() && valid_file_name.size() + 1 <= MAX_PATH);
- HANDLE handle = GlobalAlloc(GPTR, sizeof(FILEGROUPDESCRIPTOR));
- FILEGROUPDESCRIPTOR* descriptor =
- reinterpret_cast<FILEGROUPDESCRIPTOR*>(GlobalLock(handle));
+ string16 file_name = path.value();
+ DCHECK(!file_name.empty());
+ HANDLE hdata = GlobalAlloc(GPTR, sizeof(FILEGROUPDESCRIPTOR));
+ base::win::ScopedHGlobal<FILEGROUPDESCRIPTOR> locked_mem(hdata);
+ FILEGROUPDESCRIPTOR* descriptor = locked_mem.get();
descriptor->cItems = 1;
- wcscpy_s(descriptor->fgd[0].cFileName,
- valid_file_name.size() + 1,
- valid_file_name.c_str());
descriptor->fgd[0].dwFlags = FD_LINKUI;
-
- GlobalUnlock(handle);
+ wcsncpy_s(descriptor->fgd[0].cFileName,
+ MAX_PATH,
+ file_name.c_str(),
+ std::min(file_name.size(), MAX_PATH - 1u));
STGMEDIUM* storage = new STGMEDIUM;
- storage->hGlobal = handle;
storage->tymed = TYMED_HGLOBAL;
+ storage->hGlobal = hdata;
storage->pUnkForRelease = NULL;
return storage;
}
-
///////////////////////////////////////////////////////////////////////////////
// OSExchangeData, public:
« 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