vold: Don't fail to return path if volume isn't mounted

Signed-off-by: San Mehat <san@google.com>
diff --git a/VolumeManager.cpp b/VolumeManager.cpp
index 4b3342e..65e2989 100644
--- a/VolumeManager.cpp
+++ b/VolumeManager.cpp
@@ -165,11 +165,6 @@
     char mountPoint[255];
 
     snprintf(mountPoint, sizeof(mountPoint), "/asec/%s", id);
-
-    if (!isMountpointMounted(mountPoint)) {
-        errno = ENOENT;
-        return -1;
-    } 
     snprintf(buffer, maxlen, "/asec/%s", id);
     return 0;
 }