[EGIT] [core/enlightenment] master 01/01: auth - fprint - support any finger for auth instead of just first one

2021-07-07 Thread Carsten Haitzler
raster pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=32e2825e93b2521d009ca6faf7ac8346082e6b14

commit 32e2825e93b2521d009ca6faf7ac8346082e6b14
Author: Carsten Haitzler 
Date:   Wed Jul 7 13:12:27 2021 +0100

auth - fprint - support any finger for auth instead of just first one
---
 src/bin/e_auth.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_auth.c b/src/bin/e_auth.c
index fa090f9c1..6d07a0ac3 100644
--- a/src/bin/e_auth.c
+++ b/src/bin/e_auth.c
@@ -144,7 +144,7 @@ _cb_verify_stop(void *data EINA_UNUSED, const 
Eldbus_Message *m EINA_UNUSED,
if (m2)
  {
 iter = eldbus_message_iter_get(m2);
-eldbus_message_iter_basic_append(iter, 's', finger_name);
+eldbus_message_iter_basic_append(iter, 's', "any");
 eldbus_proxy_send(proxy_fprint_device, m2, _cb_verify_start, NULL, -1);
  }
 }

-- 




[EGIT] [core/enlightenment] master 01/01: mixer - fix accesses to invalid objects

2021-07-07 Thread Carsten Haitzler
raster pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=1fefd5aef96cb709783e82e85c67a4e3a5c92b78

commit 1fefd5aef96cb709783e82e85c67a4e3a5c92b78
Author: Carsten Haitzler 
Date:   Wed Jul 7 11:11:05 2021 +0100

mixer - fix accesses to invalid objects

one was a result of not turning off the source monitor and the other
not nulling out an obj handle.
---
 src/modules/mixer/e_mod_main.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/modules/mixer/e_mod_main.c b/src/modules/mixer/e_mod_main.c
index 175722cb1..c86b650e7 100644
--- a/src/modules/mixer/e_mod_main.c
+++ b/src/modules/mixer/e_mod_main.c
@@ -365,10 +365,12 @@ _popup_del(Instance *inst)
inst->recslider = NULL;
inst->reccheck = NULL;
inst->recbx = NULL;
+   inst->recic = NULL;
inst->recvu = NULL;
inst->recording_box = NULL;
emix_event_callback_del(_cb_emix_event, inst);
if (inst->mon_data.sink) _sink_unmonitor(inst, inst->mon_data.sink);
+   if (inst->recmon_data.source) _source_unmonitor(inst, 
inst->recmon_data.source);
E_FREE_FUNC(inst->popup, e_object_del);
 }
 
@@ -693,6 +695,7 @@ _popup_recording_fill(Instance *inst)
inst->recslider = NULL;
inst->reccheck = NULL;
inst->recbx = NULL;
+   inst->recic = NULL;
inst->recvu = NULL;
inst->recording_box = NULL;
 

--