Skip to content

Commit

Permalink
Fix #486: Build error
Browse files Browse the repository at this point in the history
#486

Bug solution from Guillaume Castagnino
  • Loading branch information
caclark committed May 25, 2017
1 parent 36d2e8e commit b1dd430
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,11 @@ gchar *decode_geo_parameters(const gchar *input_text)
}
else
{
fgets(buf, BUFSIZE, fp);
while (fgets(buf, BUFSIZE, fp))
{
DEBUG_1("Output: %s", buf);
}

message = g_strconcat(buf, NULL);

if(pclose(fp))
Expand Down

0 comments on commit b1dd430

Please sign in to comment.