зеркало из https://github.com/github/ruby.git
[ruby/fiddle] Use meaningful variable name
https://github.com/ruby/fiddle/commit/2cac24b7c8
This commit is contained in:
Родитель
50fbd00e76
Коммит
9f740acaf9
|
@ -31,9 +31,9 @@ VALUE cFiddleFunction;
|
|||
static void
|
||||
deallocate(void *p)
|
||||
{
|
||||
ffi_cif *ptr = p;
|
||||
if (ptr->arg_types) xfree(ptr->arg_types);
|
||||
xfree(ptr);
|
||||
ffi_cif *cif = p;
|
||||
if (cif->arg_types) xfree(cif->arg_types);
|
||||
xfree(cif);
|
||||
}
|
||||
|
||||
static size_t
|
||||
|
|
Загрузка…
Ссылка в новой задаче