Home
last modified time | relevance | path

Searched refs:new_string (Results 1 – 3 of 3) sorted by relevance

/toolchain/binutils/binutils-2.27/libiberty/
Dsetenv.c145 char *new_string = (char *) malloc (namelen + 1 + vallen); in setenv() local
146 if (new_string == NULL) in setenv()
151 *ep = new_string; in setenv()
/toolchain/binutils/binutils-2.27/bfd/
Dhash.c483 char *new_string; in bfd_hash_lookup() local
485 new_string = (char *) objalloc_alloc ((struct objalloc *) table->memory, in bfd_hash_lookup()
487 if (!new_string) in bfd_hash_lookup()
492 memcpy (new_string, string, len + 1); in bfd_hash_lookup()
493 string = new_string; in bfd_hash_lookup()
DChangeLog-20091043 * hash.c (bfd_hash_lookup): Rename variable new to new_string.