diff options
| author | Paul Eggert | 2025-12-07 15:34:42 -0800 |
|---|---|---|
| committer | Paul Eggert | 2025-12-07 15:45:20 -0800 |
| commit | b211e5489b95f39f07baa769fc581b05b393c4a3 (patch) | |
| tree | 34f59c09f3779fdf25f32bccbe8aa48491ee5b4f /lib/realloc.c | |
| parent | 0d43f2a562c84ff440da978a9275fc44e6f5d9da (diff) | |
| download | emacs-b211e5489b95f39f07baa769fc581b05b393c4a3.tar.gz emacs-b211e5489b95f39f07baa769fc581b05b393c4a3.zip | |
Update from Gnulib by running admin/merge-gnulib
* admin/merge-gnulib (AVOIDED_MODULES): Add strncpy, as Emacs is not
likely to exercise the FreeBSD 15 strncpy bug that this module fixes.
* lib/issymlinkat.h: New file, taken from Gnulib.
Diffstat (limited to 'lib/realloc.c')
| -rw-r--r-- | lib/realloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/realloc.c b/lib/realloc.c index 62efd5a39ff..cf0bf6e9f70 100644 --- a/lib/realloc.c +++ b/lib/realloc.c | |||
| @@ -94,7 +94,7 @@ rpl_realloc (void *p, size_t n) | |||
| 94 | 94 | ||
| 95 | void *result = realloc (p, n1); | 95 | void *result = realloc (p, n1); |
| 96 | 96 | ||
| 97 | # if !HAVE_MALLOC_POSIX | 97 | # if !HAVE_REALLOC_POSIX |
| 98 | if (result == NULL) | 98 | if (result == NULL) |
| 99 | errno = ENOMEM; | 99 | errno = ENOMEM; |
| 100 | # endif | 100 | # endif |