Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mixer

Dir     : e_modules/mixer


Modified Files:
        oss_mixer.c 


Log Message:
Fix segfault when going to configure, thanks for finding zoid, and spankies
to CodeWarrior :)

===================================================================
RCS file: /cvs/e/e_modules/mixer/oss_mixer.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- oss_mixer.c 14 Sep 2006 14:14:45 -0000      1.2
+++ oss_mixer.c 15 Sep 2006 12:01:11 -0000      1.3
@@ -112,7 +112,6 @@
 
    if((hw_cards = _oss_scan_devices("Installed Devices")))
      {
-       Evas_List *l;
        int i = 0;      
        char *real;
        int size;
@@ -124,7 +123,7 @@
             real = malloc(size);
             snprintf(real, size, "/dev/mixer%d", i);
             card = E_NEW(Mixer_Card, 1);
-            card->name = evas_stringshare_add(l->data);
+            card->name = evas_stringshare_add(name);
             card->real = evas_stringshare_add(real);
             card->id = id;
             free(real);



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to