* gnulib: Update to latest.
* lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
* m4/.gitignore: Regen.
* src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
Call xalloc_die on hash_insert failures.
Requested by the new __warn_unused_result__ attribute of
hash_insert.
+2009-06-10 Akim Demaille <demaille@gostai.com>
+
+ gnulib: update.
+ * gnulib: Update to latest.
+ * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
+ * m4/.gitignore: Regen.
+ * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
+ Call xalloc_die on hash_insert failures.
+ Requested by the new __warn_unused_result__ attribute of
+ hash_insert.
+
2009-06-10 Akim Demaille <demaille@gostai.com>
deterministic user-token-number redeclaration errors.
-Subproject commit 5a1286a9f8597c0063a82645b55f3e97433fc521
+Subproject commit 31d3154399f8c679ba23afb0f6bef03b73d4c741
mbsinit.c
mbswidth.c
mbswidth.h
+memchr.c
obstack.c
obstack.h
pipe-safer.c
/mbsinit.c
/mbswidth.c
/mbswidth.h
+/memchr.c
/obstack.c
/obstack.h
/pipe-safer.c
mbsinit.m4
mbstate_t.m4
mbswidth.m4
+memchr.m4
multiarch.m4
nls.m4
po.m4
/mbsinit.m4
/mbstate_t.m4
/mbswidth.m4
+/memchr.m4
/multiarch.m4
/nls.m4
/po.m4
{
/* First insertion in the hash. */
entry = symbol_new (key, loc);
- hash_insert (symbol_table, entry);
+ if (!hash_insert (symbol_table, entry))
+ xalloc_die ();
}
return entry;
}
{
/* First insertion in the hash. */
entry = semantic_type_new (key);
- hash_insert (semantic_type_table, entry);
+ if (!hash_insert (semantic_type_table, entry))
+ xalloc_die ();
}
return entry;
}