Ticket #586: buffer.c.patch

File buffer.c.patch, 292 bytes (added by dogbert2, 9 years ago)

Patch file for ticket 586

  • buffer.c

    old new  
    554554         */
    555555#ifdef DMALLOC
    556556        ret = openvpn_dmalloc (file, line, n);
     557        check_malloc_return(ret);
    557558        memset(ret, 0, n);
    558559#else
    559560        ret = calloc(1, n);