Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ccccff
#define MALLOC_ARRAY(number, type) \
    ((type *)malloc(number * sizeof(type)))

reduces

...

the

...

chance

...

of

...

error

...

in

...

an

...

allocation

...

expression:

Code Block
bgColor#ccccff

enum { N = 16 };
widget *p;

/* ... */

p = MALLOC_ARRAY(N, widget);    /* OK */

...

A small collection of macros can provide secure implementations for common uses for the standard memory allocation functions.

...