~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 17:33:56 UTC
  • Revision ID: monty@inaugust.com-20081004173356-udagzm2uxfsbk4un
RemovedĀ x_freeĀ calls.

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 x_free(A)  { my_free((uchar*) (A),MYF(MY_WME | MY_FAE | MY_ALLOW_ZERO_PTR)); }
42
41
#define safeFree(x)  { if(x) { my_free((uchar*) x,MYF(0)); x = NULL; } }
43
42
 
44
43
#endif /* DRIZZLE_SERVER_SQL_ALLOC_H */