pkbuf leak is fixed

This commit is contained in:
Sukchan Lee
2017-02-10 13:26:48 +09:00
parent fa7b4fef58
commit d1cecfb589
4 changed files with 22 additions and 29 deletions

View File

@@ -173,12 +173,10 @@ typedef unsigned @short_value@ c_uint16_t;
typedef @int_value@ c_int32_t;
typedef unsigned @int_value@ c_uint32_t;
#define C_SIZEOF_VOIDP @voidp_size@
typedef @long_value@ c_int64_t;
typedef unsigned @long_value@ c_uint64_t;
#if C_SIZEOF_VOIDP == 8
#if SIZEOF_VOIDP == 8
typedef c_uint64_t c_uintptr_t;
typedef c_int64_t c_intptr_t;
#else