summaryrefslogtreecommitdiff
path: root/main/bucket.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2013-08-23 22:20:39 +0000
committerJoshua Colp <jcolp@digium.com>2013-08-23 22:20:39 +0000
commit9c713d12dab7f6fc1e3ccd80ac3f4541f9069a2e (patch)
treeccd292d989a4eaba825e398ec605bf850c4e6ecd /main/bucket.c
parentf4bf1823e9e7a3ac87d89b09f86f6b6a621ca433 (diff)
Fix building of trunk.
Note: This is why I commit on the weekend. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@397613 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/bucket.c')
-rw-r--r--main/bucket.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/main/bucket.c b/main/bucket.c
index 0efd4871c..fd5b091ea 100644
--- a/main/bucket.c
+++ b/main/bucket.c
@@ -117,11 +117,11 @@ static void *bucket_wizard_retrieve(const struct ast_sorcery *sorcery, void *dat
#ifdef HAVE_URIPARSER
UriParserStateA state;
UriUriA uri;
+ size_t len;
#else
char *tmp = ast_strdupa(id);
#endif
SCOPED_AO2RDLOCK(lock, schemes);
- size_t len;
char *uri_scheme;
RAII_VAR(struct ast_bucket_scheme *, scheme, NULL, ao2_cleanup);
@@ -140,7 +140,7 @@ static void *bucket_wizard_retrieve(const struct ast_sorcery *sorcery, void *dat
uriFreeUriMembersA(&uri);
#else
uri_scheme = tmp;
- if (!(tmp = strchr(':'))) {
+ if (!(tmp = strchr(uri_scheme, ':'))) {
return NULL;
}
*tmp = '\0';
@@ -186,10 +186,10 @@ static void *bucket_file_wizard_retrieve(const struct ast_sorcery *sorcery, void
#ifdef HAVE_URIPARSER
UriParserStateA state;
UriUriA uri;
+ size_t len;
#else
char *tmp = ast_strdupa(id);
#endif
- size_t len;
char *uri_scheme;
SCOPED_AO2RDLOCK(lock, schemes);
RAII_VAR(struct ast_bucket_scheme *, scheme, NULL, ao2_cleanup);
@@ -209,7 +209,7 @@ static void *bucket_file_wizard_retrieve(const struct ast_sorcery *sorcery, void
uriFreeUriMembersA(&uri);
#else
uri_scheme = tmp;
- if (!(tmp = strchr(':'))) {
+ if (!(tmp = strchr(uri_scheme, ':'))) {
return NULL;
}
*tmp = '\0';
@@ -402,10 +402,10 @@ struct ast_bucket *ast_bucket_alloc(const char *uri)
#ifdef HAVE_URIPARSER
UriParserStateA state;
UriUriA full_uri;
+ size_t len;
#else
char *tmp = ast_strdupa(uri);
#endif
- size_t len;
char *uri_scheme;
RAII_VAR(struct ast_bucket_scheme *, scheme, NULL, ao2_cleanup);
struct ast_bucket *bucket;
@@ -430,7 +430,7 @@ struct ast_bucket *ast_bucket_alloc(const char *uri)
uriFreeUriMembersA(&full_uri);
#else
uri_scheme = tmp;
- if (!(tmp = strchr(':'))) {
+ if (!(tmp = strchr(uri_scheme, ':'))) {
return NULL;
}
*tmp = '\0';
@@ -628,10 +628,10 @@ struct ast_bucket_file *ast_bucket_file_alloc(const char *uri)
#ifdef HAVE_URIPARSER
UriParserStateA state;
UriUriA full_uri;
+ size_t len;
#else
char *tmp = ast_strdupa(uri);
#endif
- size_t len;
char *uri_scheme;
RAII_VAR(struct ast_bucket_scheme *, scheme, NULL, ao2_cleanup);
struct ast_bucket_file *file;
@@ -656,7 +656,7 @@ struct ast_bucket_file *ast_bucket_file_alloc(const char *uri)
uriFreeUriMembersA(&full_uri);
#else
uri_scheme = tmp;
- if (!(tmp = strchr(':'))) {
+ if (!(tmp = strchr(uri_scheme, ':'))) {
return NULL;
}
*tmp = '\0';