Updated Branches:
  refs/heads/master 21a1347bf -> 48a895111

Fix the build


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/48a89511
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/48a89511
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/48a89511

Branch: refs/heads/master
Commit: 48a895111286328021c2cf26ef609f9f61213f0e
Parents: 21a1347
Author: James Peach <[email protected]>
Authored: Sat Sep 8 14:18:17 2012 -0700
Committer: James Peach <[email protected]>
Committed: Sat Sep 8 14:18:17 2012 -0700

----------------------------------------------------------------------
 proxy/hdrs/HTTP.cc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/48a89511/proxy/hdrs/HTTP.cc
----------------------------------------------------------------------
diff --git a/proxy/hdrs/HTTP.cc b/proxy/hdrs/HTTP.cc
index e240401..70c5d7c 100644
--- a/proxy/hdrs/HTTP.cc
+++ b/proxy/hdrs/HTTP.cc
@@ -1787,8 +1787,8 @@ HTTPInfo::marshal(char *buf, int len)
   // If we have external fragment offsets, copy the initial ones
   // into the integral data.
   if (frag_len) {
-    memcpy(m_alt->m_integral_frag_offsets, m_alt->m_frag_offsets, 
sizeof(this->m_integral_frag_offsets));
-    frag_len -= sizeof(this->m_integral_frag_offsets);
+    memcpy(m_alt->m_integral_frag_offsets, m_alt->m_frag_offsets, 
sizeof(m_alt->m_integral_frag_offsets));
+    frag_len -= sizeof(m_alt->m_integral_frag_offsets);
     // frag_len should never be non-zero at this point, as the offsets
     // should be external only if too big for the internal table.
   }

Reply via email to