~zisis00/drizzle/ldap_policy

« back to all changes in this revision

Viewing changes to plugin/innobase/include/mem0mem.h

  • Committer: Zisis Sialveras
  • Date: 2012-08-09 18:18:22 UTC
  • mfrom: (2553.1.25 workspace)
  • Revision ID: zisis00@gmail.com-20120809181822-9wobhdfdx411tu5w
Some changes in ldap_policy

Show diffs side-by-side

added added

removed removed

Lines of Context:
222
222
Use this macro instead of the corresponding function!
223
223
Macro for memory buffer allocation */
224
224
 
225
 
#define mem_zalloc(N)   memset(mem_alloc(N), 0, (N));
 
225
#define mem_zalloc(N)   memset(mem_alloc(N), 0, (N))
226
226
 
227
227
#define mem_alloc(N)    mem_alloc_func((N), NULL, __FILE__, __LINE__)
228
228
#define mem_alloc2(N,S) mem_alloc_func((N), (S), __FILE__, __LINE__)