not sure why I was deleting port info strings for pulseaudio, but stop it because this breaks the world

SVN revision: 76648
This commit is contained in:
Mike Blumenkrantz 2012-09-14 08:14:50 +00:00
parent fdf581a87e
commit 6a53321e5c
1 changed files with 0 additions and 2 deletions

View File

@ -102,9 +102,7 @@ deserialize_sink(Pulse *conn __UNUSED__, Pulse_Tag *tag, Eina_Bool source)
pi = calloc(1, sizeof(Pulse_Sink_Port_Info));
EINA_SAFETY_ON_FALSE_GOTO(untag_string(tag, &pi->name), error);
eina_stringshare_del(pi->name);
EINA_SAFETY_ON_FALSE_GOTO(untag_string(tag, &pi->description), error);
eina_stringshare_del(pi->description);
EINA_SAFETY_ON_FALSE_GOTO(untag_uint32(tag, &pi->priority), error);
sink->ports = eina_list_append(sink->ports, pi);
}