Update of /cvsroot/alsa/alsa-driver/isa
In directory usw-pr-cvs1:/tmp/cvs-serv22434

Modified Files:
        sscape.c 
Log Message:
for releasing the resource, use kfree_nocheck() to avoid ALSA's
wrapper function for debugging memory allocation.



Index: sscape.c
===================================================================
RCS file: /cvsroot/alsa/alsa-driver/isa/sscape.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sscape.c    25 Sep 2002 08:10:47 -0000      1.3
+++ sscape.c    25 Sep 2002 11:48:08 -0000      1.4
@@ -336,7 +336,7 @@
 {
        register struct soundscape *sscape = get_card_soundscape(c);
        release_resource(sscape->io_res);
-       kfree(sscape->io_res);
+       kfree_nocheck(sscape->io_res);
        free_dma(sscape->chip->dma1);
 }
 
@@ -1236,7 +1236,7 @@
 
       _release_region:
        release_resource(io_res);
-       kfree(io_res);
+       kfree_nocheck(io_res);
 
        return err;
 }



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog

Reply via email to