tools: increase buffer size in gimptool from 1000 to 4096

This commit is contained in:
Michael Natterer 2013-03-27 22:56:01 +01:00
parent c865d8f141
commit fd34fee7f5
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ one_line_output (const gchar *program,
{
gchar *command = g_strconcat (program, " ", args, NULL);
FILE *pipe = popen (command, "r");
gchar line[1000];
gchar line[4096];
if (pipe == NULL)
{