Skip to content
Snippets Groups Projects
Commit 3bd3ca05 authored by Ian McInerney's avatar Ian McInerney Committed by Francois-Xavier Coudert
Browse files

libgfortran: Fix compilation of gf_vsnprintf


The fallback function (gf_vsnprintf) to provide a vsnprintf function
if the system library doesn't have one would not compile due to the
variable name for the string's destination buffer not being updated
after the refactor in 2018 in edaaef60.

This updates the internal logic of gf_vsnprintf to now use the str
variable defined in the function signature.

libgfortran/ChangeLog:

2024-04-04  Ian McInerney  <i.mcinerney17@imperial.ac.uk>

	* runtime/error.c (gf_vsnprintf): Fix compilation

Signed-off-by: default avatarIan McInerney <i.mcinerney17@imperial.ac.uk>
parent 6e7e5943
No related branches found
No related tags found
No related merge requests found
...@@ -142,15 +142,15 @@ gf_vsnprintf (char *str, size_t size, const char *format, va_list ap) ...@@ -142,15 +142,15 @@ gf_vsnprintf (char *str, size_t size, const char *format, va_list ap)
{ {
int written; int written;
written = vsprintf(buffer, format, ap); written = vsprintf(str, format, ap);
if (written >= size - 1) if (written >= size - 1)
{ {
/* The error message was longer than our buffer. Ouch. Because /* The error message was longer than the string size. Ouch. Because
we may have messed up things badly, report the error and we may have messed up things badly, report the error and
quit. */ quit. */
#define ERROR_MESSAGE "Internal error: buffer overrun in gf_vsnprintf()\n" #define ERROR_MESSAGE "Internal error: string overrun in gf_vsnprintf()\n"
write (STDERR_FILENO, buffer, size - 1); write (STDERR_FILENO, str, size - 1);
write (STDERR_FILENO, ERROR_MESSAGE, strlen (ERROR_MESSAGE)); write (STDERR_FILENO, ERROR_MESSAGE, strlen (ERROR_MESSAGE));
sys_abort (); sys_abort ();
#undef ERROR_MESSAGE #undef ERROR_MESSAGE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment