bug#60928: [PATCH] bugfix/make_hash_table: fix segfault when arg< 0 for make-hash-table
* libguile/hashtab.c (make_hash_table): FIX SEGMENTATION FAULT Currently on Guix if a user evokes (make-hash-table arg) where arg < 0, guile segfaults. This patch adds the most straight forward solution, checking if the value passed to make-hash-table is less than 0, and if so, throwing an error w
bug#60928: [PATCH] bugfix/make_hash_table: fix segfault when arg< 0 for make-hash-table
It seems this is the same bug as https://bugs.gnu.org/60488 and https://bugs.gnu.org/58154, at least it doesn't segfault in main anymore.