Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| SHA1 Hash: | d4309dc8edc85bbaa7315e2462ab413c237de879 |
|---|---|
| Date: | 2008-11-03 21:27:36 |
| User: | stephan |
| Comment: | fixed a string memleak |
Tags And Properties
- branch=trunk inherited from [a870fea998]
- sym-trunk inherited from [a870fea998]
Changes
[hide diffs]Changes to src/unittests.c
@@ -182,10 +182,11 @@
#include "whrc.h"
#include "whclob.h"
static void free_string(void*p)
{
MARKER;printf("free_string(@%p[%s])\n",p,(char const *)p);
+ free(p);
}
int rc_test()
{
whrc_context * cx = whrc_create_context();