Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/ftp/gftp/files/patch-lib-misc.c
16461 views
1
Fix segmentation fault, when gftpui_run_chdir is called with directory=0x0,
2
and then calls gftp_expand_path (src=0x0),
3
the NULL string was cloned using g_strdup, which returns NULL if
4
its only argument is NULL, then this returned string was unreferenced.
5
6
lib/misc.c | 2 ++
7
1 files changed, 2 insertions(+), 0 deletions(-)
8
9
--- lib/misc.c.orig 2022-02-15 06:31:19 UTC
10
+++ lib/misc.c
11
@@ -145,6 +145,8 @@ char * gftp_expand_path (gftp_request * request, const
12
tempchar;
13
struct passwd *pw;
14
15
+ g_return_val_if_fail(src != NULL, NULL);
16
+
17
pw = NULL;
18
str = g_strdup (src);
19
20
21