1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #include "curlcheck.h"
- #include "memdebug.h"
- static CURLcode unit_setup(void)
- {
- return CURLE_OK;
- }
- static void unit_stop(void)
- {
- }
- UNITTEST_START
- char *ptr = malloc(1330);
- Curl_safefree(ptr);
- UNITTEST_STOP
|