Commit e620e2002c74d8e62f714f7d312dcfbbc9422507
Increase format buf in fops_rename.c:incdec_name()
16 bytes can be not enough.
Author: xaizek
Author date (UTC): 2025-05-02 07:46
Committer name: xaizek
Committer date (UTC): 2025-05-02 07:58
Parent(s): 90323e90269b90fea821132e169313b437664b0c
Signing key: 99DC5E4DB05F6BE2
Tree: a64f48efcd1901dfe64c8303ec5b2ca00f407104
File src/fops_rename.c changed (mode: 100644) (index 4c08e82e2..a2328bab1) |
... |
... |
TSTATIC const char * |
598 |
598 |
incdec_name(const char fname[], int k) |
incdec_name(const char fname[], int k) |
599 |
599 |
{ |
{ |
600 |
600 |
static char result[NAME_MAX + 1]; |
static char result[NAME_MAX + 1]; |
601 |
|
char format[16]; |
|
|
601 |
|
char format[32]; |
602 |
602 |
char *b, *e; |
char *b, *e; |
603 |
603 |
int n; |
int n; |
604 |
604 |
|
|