cedric pushed a commit to branch master.

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

commit 1b8aaa9e4e597ec23b7da27773071956d44b83cf
Author: kabeer khan <kabeer.k...@samsung.com>
Date:   Fri Apr 17 12:05:18 2015 +0200

    ecore_file: fix crashing test of ecore_file
    
    Summary: Signed-off-by: kabeer khan <kabeer.k...@samsung.com>
    
    Reviewers: cedric
    
    Subscribers: cedric
    
    Differential Revision: https://phab.enlightenment.org/D2372
    
    Signed-off-by: Cedric BAIL <ced...@osg.samsung.com>
---
 src/tests/ecore/ecore_test_ecore_file.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/tests/ecore/ecore_test_ecore_file.c 
b/src/tests/ecore/ecore_test_ecore_file.c
index 81e105a..c7acd9f 100644
--- a/src/tests/ecore/ecore_test_ecore_file.c
+++ b/src/tests/ecore/ecore_test_ecore_file.c
@@ -390,11 +390,11 @@ START_TEST(ecore_test_ecore_file_download)
    fail_if(res != EINA_TRUE);
 
    res = ecore_file_download("xxyyzz", dest_name, completion_cb,
-                             progress_cb, &job, NULL);
+                             progress_cb, NULL, &job);
    fail_if(res != EINA_FALSE);
 
    res = ecore_file_download(download_url, dest_name, err_completion_cb,
-                             progress_cb, &job, NULL);
+                             progress_cb, NULL, &job);
    fail_if(res != EINA_TRUE);
    fail_if(!job);
    ecore_file_download_abort(job);

-- 


Reply via email to