bus-util: avoid infinite loop

This commit is contained in:
Tom Gundersen 2013-10-30 23:21:46 +01:00
parent 4b4bec1958
commit 07d978b0d4
1 changed files with 1 additions and 1 deletions

View File

@ -539,7 +539,7 @@ int bus_generic_print_property(const char *name, sd_bus_message *property, bool
printf("%s=", name);
while(sd_bus_message_read_basic(property, SD_BUS_TYPE_STRING, &str)) {
while(sd_bus_message_read_basic(property, SD_BUS_TYPE_STRING, &str) > 0) {
printf("%s%s", space ? " " : "", str);
space = true;