Handle EOF in text-fe
This commit is contained in:
parent
69e1ed4278
commit
e8a78b9aa1
@ -62,7 +62,7 @@ handle_line (GIOChannel *channel, GIOCondition cond, gpointer data)
|
|||||||
GIOStatus result;
|
GIOStatus result;
|
||||||
|
|
||||||
result = g_io_channel_read_line(channel, &str_return, &length, &terminator_pos, &error);
|
result = g_io_channel_read_line(channel, &str_return, &length, &terminator_pos, &error);
|
||||||
if (result == G_IO_STATUS_ERROR) {
|
if (result == G_IO_STATUS_ERROR || result == G_IO_STATUS_EOF) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
Reference in New Issue
Block a user