~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_alloc.h

  • Committer: Monty Taylor
  • Date: 2008-10-04 18:48:15 UTC
  • Revision ID: monty@inaugust.com-20081004184815-l4fjpp05h06ibrpj
Removed safeFree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
bool net_request_file(NET* net, const char* fname);
39
39
char* query_table_status(THD *thd,const char *db,const char *table_name);
40
40
 
41
 
#define safeFree(x)  { if(x) { my_free((uchar*) x,MYF(0)); x = NULL; } }
42
 
 
43
41
#endif /* DRIZZLE_SERVER_SQL_ALLOC_H */