summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Dilly <bdilly@profusion.mobi>2016-09-20 16:13:25 -0700
committerCedric BAIL <cedric@osg.samsung.com>2016-09-20 16:13:28 -0700
commita3fba57b2616f78fbdab7b43ac8e8aea7c56475b (patch)
treee2c2b54203919117e606bf355ec974f367f41248
parent03882d558824f657f5c5a54fcd2d632eafeafd87 (diff)
downloadefl-a3fba57b2616f78fbdab7b43ac8e8aea7c56475b.tar.gz
ecore_con,elput: fix warnings
Summary: elput: fix warning for unused write result ecore_con: fix warning for unused asprintf result Reviewers: iscaro, devilhorns, cedric Reviewed By: cedric Subscribers: cedric, seoz, jpeg Differential Revision: https://phab.enlightenment.org/D4308 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
-rw-r--r--src/lib/ecore_con/ecore_con.c15
-rw-r--r--src/lib/elput/elput_logind.c14
2 files changed, 24 insertions, 5 deletions
diff --git a/src/lib/ecore_con/ecore_con.c b/src/lib/ecore_con/ecore_con.c
index cc17fe8348..cb66b27d2f 100644
--- a/src/lib/ecore_con/ecore_con.c
+++ b/src/lib/ecore_con/ecore_con.c
@@ -4487,11 +4487,18 @@ _efl_net_ip_connect_async_run(void *data, Ecore_Thread *thread EINA_UNUSED)
* parameter must be a URL with schema, otherwise it won't
* return anything.
*/
- char *url;
+ Eina_Stringshare *url;
- asprintf(&url, "%s://%s:%s", d->protocol == IPPROTO_UDP ? "udp" : "tcp", host, port);
- proxies = ecore_con_libproxy_proxies_get(url);
- free(url);
+ url = eina_stringshare_printf("%s://%s:%s", d->protocol == IPPROTO_UDP ? "udp" : "tcp", host, port);
+ if (!url)
+ {
+ ERR("Could not assemble URL");
+ }
+ else
+ {
+ proxies = ecore_con_libproxy_proxies_get(url);
+ eina_stringshare_del(url);
+ }
}
EINA_THREAD_CLEANUP_PUSH((Eina_Free_Cb)ecore_con_libproxy_proxies_free, proxies);
diff --git a/src/lib/elput/elput_logind.c b/src/lib/elput/elput_logind.c
index 5d97a020cd..abe4a381d6 100644
--- a/src/lib/elput/elput_logind.c
+++ b/src/lib/elput/elput_logind.c
@@ -276,7 +276,19 @@ _logind_device_release(Elput_Manager *em, uint32_t major, uint32_t minor)
static void
_logind_pipe_write_fd(Elput_Manager *em, int fd)
{
- write(em->input.pipe, &fd, sizeof(int));
+ int ret;
+
+ while (1)
+ {
+ ret = write(em->input.pipe, &fd, sizeof(int));
+ if (ret < 0)
+ {
+ if ((errno == EAGAIN) || (errno == EINTR))
+ continue;
+ WRN("Failed to write to input pipe");
+ }
+ break;
+ }
close(em->input.pipe);
em->input.pipe = -1;
}