Fix some minor defects and build errors

* fix defects checked by static analysis
* fix Jenkins and actions build script

Signed-off-by: HyukWoo Park <hyukwoo.park@samsung.com>
This commit is contained in:
HyukWoo Park 2020-10-22 15:51:21 +09:00 committed by Boram Bae
commit 897a1d2ae5
14 changed files with 43 additions and 40 deletions

View file

@ -476,6 +476,9 @@ public:
static std::string absolutePath(const std::string& src)
{
auto absPath = realpath(src.data(), nullptr);
if (!absPath) {
return std::string();
}
std::string utf8AbsolutePath = absPath;
free(absPath);