Skip to content
  • Mahmoud Mandour's avatar
    e0c5a18e
    util/compatfd.c: Replaced a malloc call with g_malloc. · e0c5a18e
    Mahmoud Mandour authored
    
    
    Replaced a call to malloc() and its respective call to free()
    with g_malloc() and g_free().
    
    g_malloc() is preferred more than g_try_* functions, which
    return NULL on error, when the size of the requested
    allocation  is small. This is because allocating few
    bytes should not be a problem in a healthy system.
    Otherwise, the system is already in a critical state.
    
    Subsequently, removed NULL-checking after g_malloc().
    
    Signed-off-by: default avatarMahmoud Mandour <ma.mandourr@gmail.com>
    Message-Id: <20210315105814.5188-3-ma.mandourr@gmail.com>
    Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
    e0c5a18e
    util/compatfd.c: Replaced a malloc call with g_malloc.
    Mahmoud Mandour authored
    
    
    Replaced a call to malloc() and its respective call to free()
    with g_malloc() and g_free().
    
    g_malloc() is preferred more than g_try_* functions, which
    return NULL on error, when the size of the requested
    allocation  is small. This is because allocating few
    bytes should not be a problem in a healthy system.
    Otherwise, the system is already in a critical state.
    
    Subsequently, removed NULL-checking after g_malloc().
    
    Signed-off-by: default avatarMahmoud Mandour <ma.mandourr@gmail.com>
    Message-Id: <20210315105814.5188-3-ma.mandourr@gmail.com>
    Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
Loading