diff options
author | Joel Bosveld <joel@JOEL-UBUNTU.(none)> | 2007-11-23 20:21:51 +0900 |
---|---|---|
committer | Joel Bosveld <joel@JOEL-UBUNTU.(none)> | 2007-11-23 20:21:51 +0900 |
commit | 072f8d8c59f467b24fccead2bc45f338467da8aa (patch) | |
tree | 8a60aaf041099e2be57322a194ffeb2b7a2d11e5 /cubedbus.c | |
parent | c013495965ce127a32c712e14dfc71f050d045da (diff) | |
download | cubedbus-072f8d8c59f467b24fccead2bc45f338467da8aa.tar.gz cubedbus-072f8d8c59f467b24fccead2bc45f338467da8aa.tar.bz2 |
Fixed bug where points on texture being drawn in wrong order. Properly
freed some memory after use.
Diffstat (limited to 'cubedbus.c')
-rw-r--r-- | cubedbus.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -129,6 +129,10 @@ cubedbusAddObject (CompDisplay *d, strcpy(name,cubedbusName->string[i]); + for(i=0,i<cubedbusName->n;i++) + { + free(cubedbusName->string[i]); + } free(cubedbusName->string); free(cubedbusName); |