libxbps: use prop_array_get_cstring_nocopy().

This commit is contained in:
Juan RP
2012-06-13 09:23:48 +02:00
parent 412d4b7280
commit a3adbcda95
2 changed files with 2 additions and 13 deletions

View File

@ -189,7 +189,6 @@ sort_pkg_rundeps(prop_dictionary_t transd,
prop_array_t pkg_rundeps)
{
prop_dictionary_t curpkgd;
prop_object_t obj;
struct pkgdep *lpd, *pdn;
const char *str, *tract;
char *pkgnamedep;
@ -202,12 +201,7 @@ sort_pkg_rundeps(prop_dictionary_t transd,
again:
for (i = idx; i < prop_array_count(pkg_rundeps); i++) {
obj = prop_array_get(pkg_rundeps, i);
str = prop_string_cstring_nocopy(obj);
if (str == NULL) {
rv = ENOMEM;
break;
}
prop_array_get_cstring_nocopy(pkg_rundeps, i, &str);
pkgnamedep = xbps_pkgpattern_name(str);
if (pkgnamedep == NULL) {
rv = ENOMEM;