From 2437f8cd9789d42b49ead85f9c7aee0f8f9dc652 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 28 Oct 2015 17:02:38 +0100 Subject: [PATCH] Correct sizeof argument too --- menu/cbs/menu_cbs_ok.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index 3d2523fe0d..30c74595a2 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -1102,7 +1102,7 @@ static int action_ok_download_generic(const char *path, else strlcpy(s, settings->network.buildbot_url, sizeof(s)); - fill_pathname_join(s3, s, path, sizeof(s)); + fill_pathname_join(s3, s, path, sizeof(s3)); strlcpy(core_updater_path, path, sizeof(core_updater_path));