AboutSystem: use BPathFinder correctly

This commit is contained in:
Jessica Hamilton
2014-04-20 01:41:38 +12:00
parent 07fae11ef8
commit 94febdfe87
+11 -5
View File
@@ -36,6 +36,7 @@
#include <Screen.h> #include <Screen.h>
#include <ScrollView.h> #include <ScrollView.h>
#include <String.h> #include <String.h>
#include <StringList.h>
#include <StringView.h> #include <StringView.h>
#include <TranslationUtils.h> #include <TranslationUtils.h>
#include <TranslatorFormats.h> #include <TranslatorFormats.h>
@@ -1756,13 +1757,18 @@ status_t
AboutView::_GetLicensePath(const char* license, BPath& path) AboutView::_GetLicensePath(const char* license, BPath& path)
{ {
BPathFinder pathFinder; BPathFinder pathFinder;
BStringList paths;
struct stat st; struct stat st;
status_t error = pathFinder.FindPath(B_FIND_PATH_DATA_DIRECTORY, status_t error = pathFinder.FindPaths(B_FIND_PATH_DATA_DIRECTORY,
"licenses", path); "licenses", paths);
if (error == B_OK && path.Append(license) == B_OK
&& lstat(path.Path(), &st) == 0) { for (int i = 0; i < paths.CountStrings(); ++i) {
return B_OK; if (error == B_OK && path.SetTo(paths.StringAt(i)) == B_OK
&& path.Append(license) == B_OK
&& lstat(path.Path(), &st) == 0) {
return B_OK;
}
} }
path.Unset(); path.Unset();