Skip to content

Commit

Permalink
Merge pull request #34 from sudipm-mukherjee/sudip/ubuntu-buffer
Browse files Browse the repository at this point in the history
clients/nycli/utils.c: Fix buffer overflow
  • Loading branch information
trofi committed Mar 9, 2024
2 parents 6d1f500 + 2665139 commit 928dc1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clients/nycli/utils.c
Expand Up @@ -427,7 +427,7 @@ encode_url (gchar *url)
gchar *
format_url (const gchar *path, GFileTest test)
{
gchar rpath[XMMS_PATH_MAX];
gchar rpath[PATH_MAX];
const gchar *p;
gchar *url;

Expand Down

0 comments on commit 928dc1c

Please sign in to comment.