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

Fix auto-transfers

parent 029a8bf3
No related branches found
No related tags found
No related merge requests found
......@@ -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.
Finish editing this message first!
Please register or to comment