]> git.sur5r.net Git - openocd/commitdiff
Nicolas Pitre nico at cam.org Allocating a 6-byte memory location with malloc() is...
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Thu, 2 Apr 2009 21:20:35 +0000 (21:20 +0000)
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Thu, 2 Apr 2009 21:20:35 +0000 (21:20 +0000)
when this can be allocated on the stack.

git-svn-id: svn://svn.berlios.de/openocd/trunk@1442 b42882b7-edfa-0310-969c-e2dbd0fdcd60

src/flash/nand.c

index 51755aa0015e124668911e247a62345810ed42a3..2b3b51709b01efdf4f27801e73385ff1909d364d 100644 (file)
@@ -317,9 +317,7 @@ int nand_build_bbt(struct nand_device_s *device, int first, int last)
 {
        u32 page = 0x0;
        int i;
-       u8 *oob;
-       
-       oob = malloc(6);
+       u8 oob[6];
        
        if ((first < 0) || (first >= device->num_blocks))
                first = 0;