diff options
author | John Ankarström <john@ankarstrom.se> | 2021-09-18 10:42:51 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-09-18 10:42:51 +0200 |
commit | b67acafd615ae705a3e3682f87f35027789ddda5 (patch) | |
tree | 0ecead714fee2940e6793da65e67a167d860083e /t | |
parent | 0292e86cf884a26108a59d81d69cee83b54f4c88 (diff) | |
download | cforum-b67acafd615ae705a3e3682f87f35027789ddda5.tar.gz |
Free database structs after use
Diffstat (limited to 't')
-rw-r--r-- | t/front.t | 3 | ||||
-rw-r--r-- | t/post.t | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -9,6 +9,7 @@ <td><a href="?user=<% printf("%d", post->user); %>"><%= user->name %></a></td> <td><% printdate(post->created); %></td> </tr> - <% } %> + <% free(post); + } %> </table> <% #include "foot.tc" %>
\ No newline at end of file @@ -22,7 +22,8 @@ <td><%= att->mime %></td> <td><%= att->description %></td> </tr> - <% }while(att = nextatt(stmt)); %> + <% free(att); + }while(att = nextatt(stmt)); %> </table> <% } %> <% #include "foot.tc" %>
\ No newline at end of file |