summaryrefslogtreecommitdiff
path: root/third_party/libwebm/common/file_util.cc
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2019-04-09 18:37:44 -0700
committerJames Zern <jzern@google.com>2019-04-10 19:08:56 +0000
commit34d54b04e98dd0bac32e9aab0fbda0bf501bc742 (patch)
tree253fb2cf7e02a4e08605b177154bfe5a627090cd /third_party/libwebm/common/file_util.cc
parentb2f29a9a716b119c2297befeb2e119202a259c41 (diff)
downloadlibvpx-34d54b04e98dd0bac32e9aab0fbda0bf501bc742.tar
libvpx-34d54b04e98dd0bac32e9aab0fbda0bf501bc742.tar.gz
libvpx-34d54b04e98dd0bac32e9aab0fbda0bf501bc742.tar.bz2
libvpx-34d54b04e98dd0bac32e9aab0fbda0bf501bc742.zip
update libwebm to libwebm-1.0.0.27-358-gdbf1d10
changelog: https://chromium.googlesource.com/webm/libwebm/+log/libwebm-1.0.0.27-351-g9f23fbc..libwebm-1.0.0.27-358-gdbf1d10 Change-Id: I28a6b3ae02a53fb1f2029eee11e9449afb94c8e3
Diffstat (limited to 'third_party/libwebm/common/file_util.cc')
-rw-r--r--third_party/libwebm/common/file_util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/libwebm/common/file_util.cc b/third_party/libwebm/common/file_util.cc
index e6109d5a0..6eb6428b9 100644
--- a/third_party/libwebm/common/file_util.cc
+++ b/third_party/libwebm/common/file_util.cc
@@ -24,8 +24,8 @@ namespace libwebm {
std::string GetTempFileName() {
#if !defined _MSC_VER && !defined __MINGW32__
std::string temp_file_name_template_str =
- std::string(std::getenv("TEST_TMPDIR") ? std::getenv("TEST_TMPDIR") :
- ".") +
+ std::string(std::getenv("TEST_TMPDIR") ? std::getenv("TEST_TMPDIR")
+ : ".") +
"/libwebm_temp.XXXXXX";
char* temp_file_name_template =
new char[temp_file_name_template_str.length() + 1];