Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix free() after my_malloc() (should be my_free()).
Signed-off-by: Kristian Nielsen <knielsen@knielsen-hq.org>
  • Loading branch information
knielsen committed Sep 24, 2016
1 parent b3f7a80 commit 9434431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/async_queries.c
Expand Up @@ -425,7 +425,7 @@ main(int argc, char *argv[])

event_dispatch();

free(sds);
my_free(sds);

mysql_library_end();

Expand Down

0 comments on commit 9434431

Please sign in to comment.