xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit e2cae15195b717496e6e14deef4450cf394087b2

Use copy_str() in fileview.c:column_line_print()
In case there will be another bug in this area, at least don't overwrite
anything with an out-of-bounds write.
Author: xaizek
Author date (UTC): 2025-03-24 17:16
Committer name: xaizek
Committer date (UTC): 2025-03-24 17:16
Parent(s): 9833c508ae276e3a37353931227c02817b72e39e
Signing key: 99DC5E4DB05F6BE2
Tree: 7764064abdaddfbdd516d4f2630abdd482e6e3d5
File Lines added Lines deleted
src/ui/fileview.c 2 2
File src/ui/fileview.c changed (mode: 100644) (index 75ab2e78d..08f66ea8c)
31 31 #include <assert.h> /* assert() */ #include <assert.h> /* assert() */
32 32 #include <stddef.h> /* NULL size_t */ #include <stddef.h> /* NULL size_t */
33 33 #include <stdlib.h> /* abs() malloc() */ #include <stdlib.h> /* abs() malloc() */
34 #include <string.h> /* memset() strcpy() strlen() */
34 #include <string.h> /* memset() strlen() */
35 35
36 36 #include "../cfg/config.h" #include "../cfg/config.h"
37 37 #include "../compat/pthread.h" #include "../compat/pthread.h"
 
... ... column_line_print(const char buf[], int offset, AlignType align,
1233 1233 } }
1234 1234 else else
1235 1235 { {
1236 strcpy(print_buf, buf);
1236 copy_str(print_buf, sizeof(print_buf), buf);
1237 1237 } }
1238 1238 width_left = cdt->total_width - offset; width_left = cdt->total_width - offset;
1239 1239 trim_pos = utf8_nstrsnlen(buf, width_left); trim_pos = utf8_nstrsnlen(buf, width_left);
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master