diff options
author | Mateo Dev .59 <mateomiccino@gmail.com> | 2020-02-19 15:59:37 -0300 |
---|---|---|
committer | Mateo Dev .59 <mateomiccino@gmail.com> | 2020-03-03 21:58:50 -0300 |
commit | 8a88637705ecf58a069b3ea631fee8501fd8e6f4 (patch) | |
tree | 9a5da3a9cc6a39d1678abb7dae76e880c7574605 /drivers | |
parent | 80582ffa662bb4dea223003856320ede37365603 (diff) | |
download | redot-engine-8a88637705ecf58a069b3ea631fee8501fd8e6f4.tar.gz |
os: execute parse the command output from utf8
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/unix/os_unix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp index 1d94b9618d..27203b3eed 100644 --- a/drivers/unix/os_unix.cpp +++ b/drivers/unix/os_unix.cpp @@ -307,7 +307,7 @@ Error OS_Unix::execute(const String &p_path, const List<String> &p_arguments, bo if (p_pipe_mutex) { p_pipe_mutex->lock(); } - (*r_pipe) += buf; + (*r_pipe) += String::utf8(buf); if (p_pipe_mutex) { p_pipe_mutex->unlock(); } |