]> git.saurik.com Git - cycript.git/blobdiff - sig/copy.cpp
Fix issue in 64-bit choose() reported by heardrwt.
[cycript.git] / sig / copy.cpp
index b85640c1e1555598787dff2fc4cca2864fae3735..9300a1d03948e8c21089676031a22408f9d6be1e 100644 (file)
@@ -34,7 +34,7 @@
 
 namespace sig {
 
-void Copy(CYPool &pool, Element &lhs, Element &rhs) {
+void Copy(CYPool &pool, Element &lhs, const Element &rhs) {
     lhs.name = pool.strdup(rhs.name);
     if (rhs.type == NULL)
         lhs.type = NULL;
@@ -45,7 +45,7 @@ void Copy(CYPool &pool, Element &lhs, Element &rhs) {
     lhs.offset = rhs.offset;
 }
 
-void Copy(CYPool &pool, Signature &lhs, Signature &rhs) {
+void Copy(CYPool &pool, Signature &lhs, const Signature &rhs) {
     size_t count(rhs.count);
     lhs.count = count;
     lhs.elements = new(pool) Element[count];
@@ -53,16 +53,16 @@ void Copy(CYPool &pool, Signature &lhs, Signature &rhs) {
         Copy(pool, lhs.elements[index], rhs.elements[index]);
 }
 
-void Copy(CYPool &pool, Type &lhs, Type &rhs) {
+void Copy(CYPool &pool, Type &lhs, const Type &rhs) {
     lhs.primitive = rhs.primitive;
     lhs.name = pool.strdup(rhs.name);
     lhs.flags = rhs.flags;
 
-    if (rhs.primitive == '\0' || sig::IsAggregate(rhs.primitive))
+    if (sig::IsFunctional(rhs.primitive) || sig::IsAggregate(rhs.primitive))
         Copy(pool, lhs.data.signature, rhs.data.signature);
     else {
         sig::Type *&lht(lhs.data.data.type);
-        sig::Type *&rht(rhs.data.data.type);
+        sig::Type *const &rht(rhs.data.data.type);
 
         if (rht == NULL)
             lht = NULL;