1
0
mirror of https://github.com/ericonr/sndio.git synced 2024-02-18 04:45:21 -06:00

Slot name can't be empty. So, no need to check if it empty.

This commit is contained in:
Alexandre Ratchov 2019-07-10 10:41:18 +02:00
parent 505722ac5d
commit e21b26a56f

View File

@ -1609,7 +1609,6 @@ slot_new(struct dev *d, struct opt *opt, char *who,
return NULL; return NULL;
} }
s = d->slot + bestidx; s = d->slot + bestidx;
if (s->name[0] != '\0')
s->vol = MIDI_MAXCTL; s->vol = MIDI_MAXCTL;
strlcpy(s->name, name, SLOT_NAMEMAX); strlcpy(s->name, name, SLOT_NAMEMAX);
s->serial = d->serial++; s->serial = d->serial++;