mirror of
https://git.zap.org.au/git/trader.git
synced 2025-02-02 15:08:13 -05:00
Bug fix: actually copy the string read in to the destination buffer
This commit is contained in:
parent
3f96e587aa
commit
0b9b60780d
@ -73,6 +73,7 @@
|
|||||||
#define load_game_read_string(_var) \
|
#define load_game_read_string(_var) \
|
||||||
{ \
|
{ \
|
||||||
char *s; \
|
char *s; \
|
||||||
|
int len; \
|
||||||
\
|
\
|
||||||
if (fgets(buf, GAME_BUFSIZE, file) == NULL) { \
|
if (fgets(buf, GAME_BUFSIZE, file) == NULL) { \
|
||||||
err_exit("%s: missing field on line %d", filename, lineno); \
|
err_exit("%s: missing field on line %d", filename, lineno); \
|
||||||
@ -86,6 +87,13 @@
|
|||||||
if (s == NULL) { \
|
if (s == NULL) { \
|
||||||
err_exit("out of memory"); \
|
err_exit("out of memory"); \
|
||||||
} \
|
} \
|
||||||
|
\
|
||||||
|
strcpy(s, buf); \
|
||||||
|
len = strlen(s); \
|
||||||
|
if ((len > 0) && (s[len - 1] == '\n')) { \
|
||||||
|
s[len - 1] = '\0'; \
|
||||||
|
} \
|
||||||
|
\
|
||||||
(_var) = s; \
|
(_var) = s; \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user