[svn-commits] file: branch 13 r432949 - in /branches/13: ./ funcs/func_curl.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Mar 13 21:00:31 CDT 2015


Author: file
Date: Fri Mar 13 21:00:29 2015
New Revision: 432949

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=432949
Log:
func_curl: Don't hold exclusive lock when performing HTTP request.

This code originally kept a lock held when performing the HTTP
request to ensure that the options provided to curl remain valid.
This doesn't seem to be necessary these days and holding the lock
caused requests to happen sequentially instead of in parallel.

ASTERISK-18708 #close
Reported by: Dave Cabot
........

Merged revisions 432948 from http://svn.asterisk.org/svn/asterisk/branches/11

Modified:
    branches/13/   (props changed)
    branches/13/funcs/func_curl.c

Propchange: branches/13/
------------------------------------------------------------------------------
Binary property 'branch-11-merged' - no diff available.

Modified: branches/13/funcs/func_curl.c
URL: http://svnview.digium.com/svn/asterisk/branches/13/funcs/func_curl.c?view=diff&rev=432949&r1=432948&r2=432949
==============================================================================
--- branches/13/funcs/func_curl.c (original)
+++ branches/13/funcs/func_curl.c Fri Mar 13 21:00:29 2015
@@ -654,6 +654,7 @@
 			curl_easy_setopt(*curl, cur->key, cur->value);
 		}
 	}
+	AST_LIST_UNLOCK(&global_curl_info);
 
 	if (chan && (store = ast_channel_datastore_find(chan, &curl_info, NULL))) {
 		list = store->data;
@@ -692,7 +693,6 @@
 	if (store) {
 		AST_LIST_UNLOCK(list);
 	}
-	AST_LIST_UNLOCK(&global_curl_info);
 
 	if (args.postdata) {
 		curl_easy_setopt(*curl, CURLOPT_POST, 0);




More information about the svn-commits mailing list