mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-11 07:40:05 +00:00
Avoid warning.
This commit is contained in:
parent
ce84ab619f
commit
ae6b1dfc2b
@ -1,5 +1,5 @@
|
|||||||
/* Operating system support for run-time dynamic linker. Generic Unix version.
|
/* Operating system support for run-time dynamic linker. Generic Unix version.
|
||||||
Copyright (C) 1995-1998, 2000, 2001, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1995-1998, 2000-2002, 2003 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -352,7 +352,9 @@ _dl_important_hwcaps (const char *platform, size_t platform_len, size_t *sz,
|
|||||||
result = (struct r_strlenpair *) malloc (*sz * sizeof (*result) + total);
|
result = (struct r_strlenpair *) malloc (*sz * sizeof (*result) + total);
|
||||||
if (result == NULL)
|
if (result == NULL)
|
||||||
{
|
{
|
||||||
|
#ifndef USE_TLS
|
||||||
no_memory:
|
no_memory:
|
||||||
|
#endif
|
||||||
INTUSE(_dl_signal_error) (ENOMEM, NULL, NULL,
|
INTUSE(_dl_signal_error) (ENOMEM, NULL, NULL,
|
||||||
N_("cannot create capability list"));
|
N_("cannot create capability list"));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user