Maarten Lankhorst m.b.lankhorst@gmail.com writes:
Fixed 2 small memory leaks in enummedia (my fault, not used to while loops..)
Note that there are 2 ways to fix it: while (--i) .. -> while (i--) .. while (--i) .. -> while (--i >= 0) ..
I chose the second, but I don't think it matters ;)
In that case it matters a lot, since i is unsigned...