- Safely escape user input with mysql_real_escape_string

- fixed some memory leaks
This commit is contained in:
Geir Hauge
2012-12-03 12:20:20 +00:00
parent 59e7d4782e
commit dc6b93166b
4 changed files with 79 additions and 72 deletions

View File

@@ -33,6 +33,9 @@ version(void);
extern int
read_config_file(void);
/* same as strcpy, but returns a pointer to the end of dest instead of start */
extern char *strmov(char *, const char *);
#ifdef _mysql_h