Re: gnome-keyring Probable boolean logic error
- From: Stef Walter <stefw gnome org>
- To: Michael McConville <mmcco mykolab com>, gnome-keyring-list gnome org
- Subject: Re: gnome-keyring Probable boolean logic error
- Date: Mon, 18 Apr 2016 12:11:12 +0200
On 16.04.2016 23:07, Michael McConville wrote:
Seems pretty straightforward. I found this with Coccinelle.
Thanks. Pushed to git master.
Stef
--- daemon/ssh-agent/gkd-ssh-agent.c
+++ /tmp/cocci-output-18531-5ef60c-gkd-ssh-agent.c
@@ -86,7 +86,7 @@ write_all (int fd, const guchar *buf, in
res = write (fd, buf, len);
if (res < 0) {
- if (errno == EAGAIN && errno == EINTR)
+ if (errno == EAGAIN || errno == EINTR)
continue;
if (errno != EPIPE)
g_warning ("couldn't write %u bytes to client: %s", all,
_______________________________________________
gnome-keyring-list mailing list
gnome-keyring-list gnome org
https://mail.gnome.org/mailman/listinfo/gnome-keyring-list
[
Date Prev][Date Next] [
Thread Prev][Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]