Fixed a seg fault in an earlier commit.

2003-09-16  Dave Neary  <bolsh@gimp.org>

        * app/config/gimpconfig-path.c: Fixed a seg fault in an earlier
        commit.
This commit is contained in:
Dave Neary
2003-09-16 19:41:44 +00:00
committed by David Neary
parent 148d52c84d
commit da6dfbd50f
3 changed files with 23 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-09-16 Dave Neary <bolsh@gimp.org>
* app/config/gimpconfig-path.c: Fixed a seg fault in an earlier
commit.
2003-09-16 Michael Natterer <mitch@gimp.org>
* app/gui/brushes-menu.c

View File

@ -151,7 +151,15 @@ gimp_config_path_expand (const gchar *path,
expanded = g_new (gchar, length + 1);
p = filename;
if (filename)
{
p = filename;
}
else
{
p = path;
}
n = expanded;
while (*p)

View File

@ -151,7 +151,15 @@ gimp_config_path_expand (const gchar *path,
expanded = g_new (gchar, length + 1);
p = filename;
if (filename)
{
p = filename;
}
else
{
p = path;
}
n = expanded;
while (*p)