Skip to content
Snippets Groups Projects
Commit 04017243 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Fix auto-transfers

parent ef44d78a
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -13292,7 +13292,7 @@ do_rip_command(int level, int sublevel, int cmd, const char *rawargs)
break;
}
size_t fnln = p - &args[8];
if (cpln + fnln >= cpln) {
if (cpln + fnln >= sizeof(cache_path)) {
strcpy(rip.bbs->dldir, dldir);
free(dldir);
break;
......@@ -13336,7 +13336,7 @@ do_rip_command(int level, int sublevel, int cmd, const char *rawargs)
break;
}
size_t fnln = p - &args[8];
if (cpln + fnln >= cpln) {
if (cpln + fnln >= sizeof(cache_path)) {
strcpy(rip.bbs->uldir, uldir);
free(uldir);
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment