Merge "Handle empty strings in GetPartitionAbsolutePath."
This commit is contained in:
commit
fcb8b96145
1 changed files with 2 additions and 1 deletions
|
@ -26,6 +26,7 @@
|
|||
#include <unistd.h>
|
||||
|
||||
#include <android-base/file.h>
|
||||
#include <android-base/strings.h>
|
||||
|
||||
#include "utility.h"
|
||||
|
||||
|
@ -37,7 +38,7 @@ using android::base::unique_fd;
|
|||
namespace {
|
||||
|
||||
std::string GetPartitionAbsolutePath(const std::string& path) {
|
||||
if (path[0] == '/') {
|
||||
if (android::base::StartsWith(path, "/")) {
|
||||
return path;
|
||||
}
|
||||
return "/dev/block/by-name/" + path;
|
||||
|
|
Loading…
Reference in a new issue