diff options
author | Pablo Barciela <[email protected]> | 2019-02-23 13:35:40 +0100 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-03-04 12:49:48 +0100 |
commit | ad07330e1a39bc4469aa9c085a34750f8c505266 (patch) | |
tree | a9180471d9ee8c47f1e211ffcae4672df134de54 /src/caja-sidebar-title.c | |
parent | e5cacba4f3c7114c62b819108b44bf777902efbc (diff) | |
download | caja-ad07330e1a39bc4469aa9c085a34750f8c505266.tar.bz2 caja-ad07330e1a39bc4469aa9c085a34750f8c505266.tar.xz |
[Security] Use 'g_strlcpy' instead of 'strcpy'
to avoid warnings with Clang Analyzer
Diffstat (limited to 'src/caja-sidebar-title.c')
-rw-r--r-- | src/caja-sidebar-title.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caja-sidebar-title.c b/src/caja-sidebar-title.c index af9cb932..48eb8538 100644 --- a/src/caja-sidebar-title.c +++ b/src/caja-sidebar-title.c @@ -433,7 +433,7 @@ override_title_font (GtkWidget *widget, g_strreverse (tempsize); gchar tempfont [strlen (font)]; - strcpy (tempfont, font); + g_strlcpy (tempfont, font, sizeof (tempfont)); tempfont [strlen (font) - strlen (tempsize)] = 0; css = g_strdup_printf ("label { font-family: %s; font-size: %spt; }", tempfont, tempsize); |