This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch devs/dimmus/meson
in repository efl.
View the commit online.
commit 014f36c5d43ed2991767395295ee1f2272634656
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Mon May 5 10:44:10 2025 +0100
ecore con - url - fix correct error val return
it returned an error beforer - but the wrong one for internal errors.
i assume these never happened and no one changed behavior on error
type so it didn't matter.
fixes #87
@fix
---
src/lib/ecore_con/ecore_con_url_curl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib/ecore_con/ecore_con_url_curl.c b/src/lib/ecore_con/ecore_con_url_curl.c
index 1cd6a10a98..e107767e7e 100644
--- a/src/lib/ecore_con/ecore_con_url_curl.c
+++ b/src/lib/ecore_con/ecore_con_url_curl.c
@@ -157,7 +157,7 @@ _curlmcode_to_eina_error(const CURLMcode code)
case CURLM_BAD_HANDLE: return EBADF;
case CURLM_BAD_EASY_HANDLE: return EBADF;
case CURLM_OUT_OF_MEMORY: return ENOMEM;
- case CURLM_INTERNAL_ERROR: EIO; /* not exact, but the error should happen so not much of a problem */
+ case CURLM_INTERNAL_ERROR: return EIO; /* not exact, but the error should happen so not much of a problem */
case CURLM_BAD_SOCKET: return ENOTSOCK;
case CURLM_UNKNOWN_OPTION: return EINVAL;
case CURLM_ADDED_ALREADY: return EALREADY;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.