device-manager: Add an assertion to get rid of a warning from Coverity.

Coverity thinks that device_name can be NULL when it's
dereferenced by strcmp. Adding an assertion doesn't hurt
here (in my opinion), and that should get rid of the
warning.
This commit is contained in:
Tanu Kaskinen 2012-03-28 12:27:26 +03:00 committed by Tanu Kaskinen
parent 9d640e4491
commit 8747930747

View file

@ -576,7 +576,7 @@ static void update_highest_priority_device_indexes(struct userdata *u, const cha
struct entry *e; struct entry *e;
name = pa_xstrndup(key.data, key.size); name = pa_xstrndup(key.data, key.size);
device_name = get_name(name, prefix); pa_assert_se(device_name = get_name(name, prefix));
if ((e = entry_read(u, name))) { if ((e = entry_read(u, name))) {
for (uint32_t i = 0; i < NUM_ROLES; ++i) { for (uint32_t i = 0; i < NUM_ROLES; ++i) {