summaryrefslogtreecommitdiffstats
path: root/base/clipboard_util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/clipboard_util.cc')
-rw-r--r--base/clipboard_util.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/base/clipboard_util.cc b/base/clipboard_util.cc
index 5902b43..9d35db4 100644
--- a/base/clipboard_util.cc
+++ b/base/clipboard_util.cc
@@ -356,8 +356,7 @@ bool ClipboardUtil::GetFileContents(IDataObject* data_object,
if (SUCCEEDED(data_object->GetData(GetFileContentFormatZero(), &content))) {
if (TYMED_HGLOBAL == content.tymed) {
ScopedHGlobal<char> data(content.hGlobal);
- // The size includes the trailing NULL byte. We don't want it.
- file_contents->assign(data.get(), data.Size() - 1);
+ file_contents->assign(data.get(), data.Size());
}
ReleaseStgMedium(&content);
}