xbps-query: fix segfault when listing unexistent package files.
This commit is contained in:
parent
b5d141e28c
commit
dd9cf9737b
2
NEWS
2
NEWS
@ -1,5 +1,7 @@
|
|||||||
xbps-0.22 (???):
|
xbps-0.22 (???):
|
||||||
|
|
||||||
|
* xbps-query(8): fix segfault when showing unexistent package files.
|
||||||
|
|
||||||
* When checking for obsolete files in upgrades, ignore unexistent files in
|
* When checking for obsolete files in upgrades, ignore unexistent files in
|
||||||
current package; this was hitting an assertion due to this.
|
current package; this was hitting an assertion due to this.
|
||||||
|
|
||||||
|
@ -223,6 +223,8 @@ show_pkg_files(prop_dictionary_t filesd)
|
|||||||
|
|
||||||
for (x = 0; x < prop_array_count(array); x++) {
|
for (x = 0; x < prop_array_count(array); x++) {
|
||||||
obj = prop_array_get(array, x);
|
obj = prop_array_get(array, x);
|
||||||
|
if (prop_object_type(obj) != PROP_TYPE_DICTIONARY)
|
||||||
|
continue;
|
||||||
prop_dictionary_get_cstring_nocopy(obj, "file", &file);
|
prop_dictionary_get_cstring_nocopy(obj, "file", &file);
|
||||||
printf("%s", file);
|
printf("%s", file);
|
||||||
if (prop_dictionary_get_cstring_nocopy(obj,
|
if (prop_dictionary_get_cstring_nocopy(obj,
|
||||||
|
Loading…
Reference in New Issue
Block a user