Fixed eglib code by implementing missing g_malloc0.
This commit is contained in:
Родитель
9347d35480
Коммит
ba0b3d9889
|
@ -44,6 +44,12 @@ gpointer g_malloc (gsize x)
|
|||
return malloc(x);
|
||||
}
|
||||
|
||||
gpointer g_malloc0 (gsize x)
|
||||
{
|
||||
return calloc(1, x);
|
||||
}
|
||||
|
||||
|
||||
#define INITIAL_CAPACITY 16
|
||||
|
||||
#define element_offset(p,i) ((p)->array.data + (i) * (p)->element_size)
|
||||
|
|
Загрузка…
Ссылка в новой задаче