emotion: revert "free channels only if there's channel
authorbdilly <bdilly>
Tue, 28 Aug 2012 17:00:50 +0000 (17:00 +0000)
committerbdilly <bdilly@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 28 Aug 2012 17:00:50 +0000 (17:00 +0000)
 to free"

This reverts commit rev 75741.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/emotion@75796 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/modules/generic/emotion_generic.c

index 47e00a7..a769271 100644 (file)
@@ -390,7 +390,7 @@ _audio_channels_free(Emotion_Generic_Video *ev)
    int i;
    for (i = 0; i < ev->audio_channels_count; i++)
      eina_stringshare_del(ev->audio_channels[i].name);
-   if (ev->audio_channels_count) free(ev->audio_channels);
+   free(ev->audio_channels);
    ev->audio_channels_count = 0;
 }
 
@@ -400,7 +400,7 @@ _video_channels_free(Emotion_Generic_Video *ev)
    int i;
    for (i = 0; i < ev->video_channels_count; i++)
      eina_stringshare_del(ev->video_channels[i].name);
-   if (ev->video_channels_count) free(ev->video_channels);
+   free(ev->video_channels);
    ev->video_channels_count = 0;
 }
 
@@ -410,7 +410,7 @@ _spu_channels_free(Emotion_Generic_Video *ev)
    int i;
    for (i = 0; i < ev->spu_channels_count; i++)
      eina_stringshare_del(ev->spu_channels[i].name);
-   if (ev->spu_channels_count) free(ev->spu_channels);
+   free(ev->spu_channels);
    ev->spu_channels_count = 0;
 }