merge from open-source master

Change-Id: Ia4cb27645bfd757fb75273ff5a6cbf3af57b3a03
This commit is contained in:
The Android Open Source Project 2010-05-14 13:38:55 -07:00
commit 9514fca5c7

View file

@ -108,6 +108,10 @@ mkdir_recursively(const string& path)
{ {
int err; int err;
size_t pos = 0; size_t pos = 0;
// For absolute pathnames, that starts with leading '/'
// use appropriate initial value.
if (path.length() != 0 and path[0] == '/') pos++;
while (true) { while (true) {
pos = path.find('/', pos); pos = path.find('/', pos);
string p = path.substr(0, pos); string p = path.substr(0, pos);