2024-10-27
| ||
22:37 | • Fixed ticket [134d90a996]: String \0 safety plus 4 other changes artifact: 376510cc34 user: js | |
2024-09-08
| ||
09:44 | • Ticket [134d90a996]: 3 changes artifact: 66f9e80c67 user: js | |
2024-05-22
| ||
00:01 | • Ticket [134d90a996]: 3 changes artifact: 89b5ac18b3 user: js | |
2024-04-28
| ||
15:46 | • Ticket [134d90a996]: 3 changes artifact: 5aecadaf53 user: js | |
2024-03-23
| ||
16:58 | • Ticket [134d90a996]: 4 changes artifact: 3ac85cf6d9 user: js | |
2024-03-17
| ||
09:02 | • Ticket [134d90a996]: 4 changes artifact: ef42aecc12 user: js | |
2023-07-22
| ||
07:17 | • New ticket [134d90a996]. artifact: 3fa39fc600 user: js | |
Ticket UUID: | 134d90a99615cc7590173d97a37949db8c9574d5 | |||
Title: | String \0 safety | |||
Status: | Fixed | Type: | Enhancement | |
Severity: | Severe | Priority: | High | |
Subsystem: | Resolution: | Fixed | ||
Last Modified: | 2024-10-27 22:37:17 | |||
Version Found In: | Milestone: | 1.2 | ||
User Comments: | ||||
js added on 2023-07-22 07:17:50:
Currently,
The first option probably doesn't scale, as there are many places where an The second option might be unexpected and lead to bugs, because the user has just specified a length for the string to create, but the just created string has a different length. Therefore, the third option probably makes most sense. js added on 2024-09-08 09:44:56: Another option is to allow 0 in strings, but throw an js added on 2024-10-27 22:37:17: Implemented in [6fbc3b18c7]. Further tests will be added later, but for now, this is tested via the JSON tests. |