[arch-commits] Commit in serf/repos (2 files)
Ángel Velásquez
angvp at nymeria.archlinux.org
Mon Sep 23 03:52:26 UTC 2013
Date: Monday, September 23, 2013 @ 05:52:26
Author: angvp
Revision: 194719
archrelease: copy trunk to testing-i686, testing-x86_64
Deleted:
serf/repos/testing-i686/serf-ssl-allocator-v2.patch
serf/repos/testing-x86_64/serf-ssl-allocator-v2.patch
--------------------------------------------+
testing-i686/serf-ssl-allocator-v2.patch | 57 ---------------------------
testing-x86_64/serf-ssl-allocator-v2.patch | 57 ---------------------------
2 files changed, 114 deletions(-)
Deleted: testing-i686/serf-ssl-allocator-v2.patch
===================================================================
--- testing-i686/serf-ssl-allocator-v2.patch 2013-09-23 03:50:48 UTC (rev 194718)
+++ testing-i686/serf-ssl-allocator-v2.patch 2013-09-23 03:52:26 UTC (rev 194719)
@@ -1,57 +0,0 @@
-Index: buckets/ssl_buckets.c
-===================================================================
---- buckets/ssl_buckets.c (revision 2130)
-+++ buckets/ssl_buckets.c (working copy)
-@@ -1192,21 +1192,16 @@
- context->server_cert_userdata = data;
- }
-
--static serf_ssl_context_t *ssl_init_context(void)
-+static serf_ssl_context_t *ssl_init_context(serf_bucket_alloc_t *allocator)
- {
- serf_ssl_context_t *ssl_ctx;
-- apr_pool_t *pool;
-- serf_bucket_alloc_t *allocator;
-
- init_ssl_libraries();
-
-- apr_pool_create(&pool, NULL);
-- allocator = serf_bucket_allocator_create(pool, NULL, NULL);
--
- ssl_ctx = serf_bucket_mem_alloc(allocator, sizeof(*ssl_ctx));
-
- ssl_ctx->refcount = 0;
-- ssl_ctx->pool = pool;
-+ ssl_ctx->pool = serf_bucket_allocator_get_pool(allocator);
- ssl_ctx->allocator = allocator;
-
- ssl_ctx->ctx = SSL_CTX_new(SSLv23_client_method());
-@@ -1263,8 +1258,6 @@
- static apr_status_t ssl_free_context(
- serf_ssl_context_t *ssl_ctx)
- {
-- apr_pool_t *p;
--
- /* If never had the pending buckets, don't try to free them. */
- if (ssl_ctx->decrypt.pending != NULL) {
- serf_bucket_destroy(ssl_ctx->decrypt.pending);
-@@ -1277,10 +1270,7 @@
- SSL_free(ssl_ctx->ssl);
- SSL_CTX_free(ssl_ctx->ctx);
-
-- p = ssl_ctx->pool;
--
- serf_bucket_mem_free(ssl_ctx->allocator, ssl_ctx);
-- apr_pool_destroy(p);
-
- return APR_SUCCESS;
- }
-@@ -1294,7 +1284,7 @@
-
- ctx = serf_bucket_mem_alloc(allocator, sizeof(*ctx));
- if (!ssl_ctx) {
-- ctx->ssl_ctx = ssl_init_context();
-+ ctx->ssl_ctx = ssl_init_context(allocator);
- }
- else {
- ctx->ssl_ctx = ssl_ctx;
Deleted: testing-x86_64/serf-ssl-allocator-v2.patch
===================================================================
--- testing-x86_64/serf-ssl-allocator-v2.patch 2013-09-23 03:50:48 UTC (rev 194718)
+++ testing-x86_64/serf-ssl-allocator-v2.patch 2013-09-23 03:52:26 UTC (rev 194719)
@@ -1,57 +0,0 @@
-Index: buckets/ssl_buckets.c
-===================================================================
---- buckets/ssl_buckets.c (revision 2130)
-+++ buckets/ssl_buckets.c (working copy)
-@@ -1192,21 +1192,16 @@
- context->server_cert_userdata = data;
- }
-
--static serf_ssl_context_t *ssl_init_context(void)
-+static serf_ssl_context_t *ssl_init_context(serf_bucket_alloc_t *allocator)
- {
- serf_ssl_context_t *ssl_ctx;
-- apr_pool_t *pool;
-- serf_bucket_alloc_t *allocator;
-
- init_ssl_libraries();
-
-- apr_pool_create(&pool, NULL);
-- allocator = serf_bucket_allocator_create(pool, NULL, NULL);
--
- ssl_ctx = serf_bucket_mem_alloc(allocator, sizeof(*ssl_ctx));
-
- ssl_ctx->refcount = 0;
-- ssl_ctx->pool = pool;
-+ ssl_ctx->pool = serf_bucket_allocator_get_pool(allocator);
- ssl_ctx->allocator = allocator;
-
- ssl_ctx->ctx = SSL_CTX_new(SSLv23_client_method());
-@@ -1263,8 +1258,6 @@
- static apr_status_t ssl_free_context(
- serf_ssl_context_t *ssl_ctx)
- {
-- apr_pool_t *p;
--
- /* If never had the pending buckets, don't try to free them. */
- if (ssl_ctx->decrypt.pending != NULL) {
- serf_bucket_destroy(ssl_ctx->decrypt.pending);
-@@ -1277,10 +1270,7 @@
- SSL_free(ssl_ctx->ssl);
- SSL_CTX_free(ssl_ctx->ctx);
-
-- p = ssl_ctx->pool;
--
- serf_bucket_mem_free(ssl_ctx->allocator, ssl_ctx);
-- apr_pool_destroy(p);
-
- return APR_SUCCESS;
- }
-@@ -1294,7 +1284,7 @@
-
- ctx = serf_bucket_mem_alloc(allocator, sizeof(*ctx));
- if (!ssl_ctx) {
-- ctx->ssl_ctx = ssl_init_context();
-+ ctx->ssl_ctx = ssl_init_context(allocator);
- }
- else {
- ctx->ssl_ctx = ssl_ctx;
More information about the arch-commits
mailing list