Bug fix (bug - double removing of the header)
diff --git a/model/ccnx-content-store.cc b/model/ccnx-content-store.cc
index bb8c613..110e7ac 100644
--- a/model/ccnx-content-store.cc
+++ b/model/ccnx-content-store.cc
@@ -104,8 +104,8 @@
   static CcnxContentObjectTail tail; ///< \internal for optimization purposes
 
   m_packet = packet->Copy ();
-  m_packet->RemoveHeader (*header);
-  m_packet->RemoveTrailer (tail);
+  //m_packet->RemoveHeader (*header);//causes bug
+  //m_packet->RemoveTrailer (tail);
 }
 
 Ptr<Packet>