parent
dbeef176d1
commit
fb83490d9a
@ -1 +1,2 @@
|
|||||||
/qpid-proton-c-0.3.tar.gz
|
/qpid-proton-c-0.3.tar.gz
|
||||||
|
/qpid-proton-0.4.tar.gz
|
||||||
|
@ -1,31 +0,0 @@
|
|||||||
From d50d9bfe0b84dcdcb8f2f627b50719a7d61d6dab Mon Sep 17 00:00:00 2001
|
|
||||||
From: mcpierce <mcpierce@13f79535-47bb-0310-9956-ffa450edef68>
|
|
||||||
Date: Fri, 25 Jan 2013 14:56:42 +0000
|
|
||||||
Subject: [PATCH] PROTON-202: Fixes building proton on non-x86 platforms.
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
Submitted by: Dan Horák <dan@danny.cz>
|
|
||||||
|
|
||||||
git-svn-id: https://svn.apache.org/repos/asf/qpid/proton/trunk@1438546 13f79535-47bb-0310-9956-ffa450edef68
|
|
||||||
---
|
|
||||||
proton-c/src/codec/codec.c | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/proton-c/src/codec/codec.c b/proton-c/src/codec/codec.c
|
|
||||||
index 5e57f81..d72acc0 100644
|
|
||||||
--- a/proton-c/src/codec/codec.c
|
|
||||||
+++ b/proton-c/src/codec/codec.c
|
|
||||||
@@ -1353,7 +1353,7 @@ int pn_data_vscan(pn_data_t *data, const char *fmt, va_list ap)
|
|
||||||
while (*fmt) {
|
|
||||||
char code = *(fmt++);
|
|
||||||
|
|
||||||
- bool found;
|
|
||||||
+ bool found = false;
|
|
||||||
pn_type_t type;
|
|
||||||
|
|
||||||
bool scanned;
|
|
||||||
--
|
|
||||||
1.8.1
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
|||||||
From d586bcc02c7b2a2d2ef073075b945540e231a76b Mon Sep 17 00:00:00 2001
|
|
||||||
From: mcpierce <mcpierce@13f79535-47bb-0310-9956-ffa450edef68>
|
|
||||||
Date: Mon, 28 Jan 2013 11:30:42 +0000
|
|
||||||
Subject: [PATCH] PROTON-202: Assigns a default value to scanned in codec.c
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
Submitted by: Dan Horák <dan@danny.cz>
|
|
||||||
|
|
||||||
git-svn-id: https://svn.apache.org/repos/asf/qpid/proton/trunk@1439349 13f79535-47bb-0310-9956-ffa450edef68
|
|
||||||
---
|
|
||||||
proton-c/src/codec/codec.c | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/proton-c/src/codec/codec.c b/proton-c/src/codec/codec.c
|
|
||||||
index d72acc0..a91b644 100644
|
|
||||||
--- a/proton-c/src/codec/codec.c
|
|
||||||
+++ b/proton-c/src/codec/codec.c
|
|
||||||
@@ -1356,7 +1356,7 @@ int pn_data_vscan(pn_data_t *data, const char *fmt, va_list ap)
|
|
||||||
bool found = false;
|
|
||||||
pn_type_t type;
|
|
||||||
|
|
||||||
- bool scanned;
|
|
||||||
+ bool scanned = false;
|
|
||||||
bool suspend = resume_count > 0;
|
|
||||||
|
|
||||||
switch (code) {
|
|
||||||
--
|
|
||||||
1.8.1
|
|
||||||
|
|
@ -1,36 +0,0 @@
|
|||||||
From 595eefb5154017ec151bb551cf973735488654d2 Mon Sep 17 00:00:00 2001
|
|
||||||
From: astitcher <astitcher@13f79535-47bb-0310-9956-ffa450edef68>
|
|
||||||
Date: Thu, 21 Feb 2013 17:33:55 +0000
|
|
||||||
Subject: [PATCH] PROTON-230, PROTON-246: Copying nested data fails in some
|
|
||||||
cases
|
|
||||||
|
|
||||||
git-svn-id: https://svn.apache.org/repos/asf/qpid/proton/trunk@1448733 13f79535-47bb-0310-9956-ffa450edef68
|
|
||||||
---
|
|
||||||
proton-c/src/codec/codec.c | 7 +++----
|
|
||||||
1 file changed, 3 insertions(+), 4 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/proton-c/src/codec/codec.c b/proton-c/src/codec/codec.c
|
|
||||||
index ee646ab..843abab 100644
|
|
||||||
--- a/proton-c/src/codec/codec.c
|
|
||||||
+++ b/proton-c/src/codec/codec.c
|
|
||||||
@@ -2949,14 +2949,13 @@ int pn_data_appendn(pn_data_t *data, pn_data_t *src, int limit)
|
|
||||||
pn_data_exit(data);
|
|
||||||
pn_data_exit(src);
|
|
||||||
level--;
|
|
||||||
+ continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
- if (pn_data_next(src)) {
|
|
||||||
- break;
|
|
||||||
- } else {
|
|
||||||
+ if (!pn_data_next(src)) {
|
|
||||||
stop = true;
|
|
||||||
- break;
|
|
||||||
}
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stop) break;
|
|
||||||
--
|
|
||||||
1.8.1.2
|
|
||||||
|
|
Loading…
Reference in new issue