mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Explain the errno use in g_aligned_alloc()
This commit is contained in:
parent
b37c99c44e
commit
36449ef5f9
@ -595,6 +595,14 @@ g_aligned_alloc (gsize n_blocks,
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* We need to clear errno because posix_memalign() will use its return
|
||||
* value in the same way memalign() and aligned_alloc() will set errno.
|
||||
* Additionally, posix_memalign() will warn if its return value is left
|
||||
* unassigned.
|
||||
*
|
||||
* We handle all possible return values (ENOMEM and EINVAL) with either
|
||||
* precondition or postcondition checking.
|
||||
*/
|
||||
errno = 0;
|
||||
|
||||
#if defined(HAVE_POSIX_MEMALIGN)
|
||||
|
Loading…
Reference in New Issue
Block a user