projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ae93a40
)
src/data/dictionary.c (make_hinted_name): Limit generated name to 64 bytes long
author
John Darrington
<john@darrington.wattle.id.au>
Tue, 17 Nov 2020 17:27:38 +0000
(18:27 +0100)
committer
John Darrington
<john@darrington.wattle.id.au>
Tue, 17 Nov 2020 17:27:38 +0000
(18:27 +0100)
src/data/dictionary.c
patch
|
blob
|
history
diff --git
a/src/data/dictionary.c
b/src/data/dictionary.c
index d2768cad505a43f9daa80ad17244f72db0889455..9c73e0ea442229bbaa25ad1181ab5d405812e31d 100644
(file)
--- a/
src/data/dictionary.c
+++ b/
src/data/dictionary.c
@@
-1094,6
+1094,9
@@
make_hinted_name (const struct dictionary *dict, const char *hint)
size_t ofs;
int mblen;
+ if (hint_len > ID_MAX_LEN)
+ hint_len = ID_MAX_LEN;
+
/* The allocation size here is OK: characters that are copied directly fit
OK, and characters that are not copied directly are replaced by a single
'_' byte. If u8_mbtouc() replaces bad input by 0xfffd, then that will get
@@
-1200,6
+1203,7
@@
dict_make_unique_var_name (const struct dictionary *dict, const char *hint,
if (hinted_name != NULL)
return hinted_name;
}
+
return make_numeric_name (dict, num_start);
}