GLib.try_malloc (original) (raw)
GLib
API Version: 2.0
Library Version: 2.85.0
Functions
Generated by gi-docgen 2024.1
Function
GLibtry_malloc
Declaration [src]
gpointer
g_try_malloc (
gsize n_bytes
)
Description [src]
Attempts to allocate n_bytes
, and returns NULL
on failure. Contrast with g_malloc(), which aborts the program on failure.
Parameters
n_bytes
Type: gsize
Number of bytes to allocate.
Return value
Type: gpointer
The allocated memory, or NULL
.
The data is owned by the called function. |
---|
The return value can be NULL. |