mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 18:40:13 +01:00
util: use standard name for strdup()
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Eric Anholt <eric@anholt.net> Reviewed-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
09a8a39940
commit
3ba199abd1
3 changed files with 4 additions and 5 deletions
|
|
@ -309,7 +309,7 @@ debug_symbol_name_cached(const void *addr)
|
|||
{
|
||||
char buf[1024];
|
||||
debug_symbol_name(addr, buf, sizeof(buf));
|
||||
name = util_strdup(buf);
|
||||
name = strdup(buf);
|
||||
|
||||
util_hash_table_set(symbols_hash, (void*)addr, (void*)name);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -194,7 +194,7 @@ _mesa_symbol_table_add_symbol(struct _mesa_symbol_table *table,
|
|||
new_sym->next_with_same_name = sym;
|
||||
new_sym->name = sym->name;
|
||||
} else {
|
||||
new_sym->name = util_strdup(name);
|
||||
new_sym->name = strdup(name);
|
||||
if (new_sym->name == NULL) {
|
||||
free(new_sym);
|
||||
_mesa_error_no_memory(__func__);
|
||||
|
|
@ -266,7 +266,7 @@ _mesa_symbol_table_add_global_symbol(struct _mesa_symbol_table *table,
|
|||
|
||||
sym->name = inner_sym->name;
|
||||
} else {
|
||||
sym->name = util_strdup(name);
|
||||
sym->name = strdup(name);
|
||||
if (sym->name == NULL) {
|
||||
free(sym);
|
||||
_mesa_error_no_memory(__func__);
|
||||
|
|
|
|||
|
|
@ -174,7 +174,7 @@ util_strncmp(const char *s1, const char *s2, size_t n)
|
|||
|
||||
|
||||
#define util_strcasecmp stricmp
|
||||
#define util_strdup _strdup
|
||||
#define strdup _strdup
|
||||
|
||||
#else
|
||||
|
||||
|
|
@ -186,7 +186,6 @@ util_strncmp(const char *s1, const char *s2, size_t n)
|
|||
#define util_strncmp strncmp
|
||||
#define util_strncat strncat
|
||||
#define util_strcasecmp strcasecmp
|
||||
#define util_strdup strdup
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue