- Timestamp:
- Aug 9, 2008, 10:00:58 AM (16 years ago)
- Location:
- trunk/src/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/RpLibraryFInterface.cc
r1086 r1105 35 35 36 36 if (lib) { 37 handle = storeObject_ Lib(lib);37 handle = storeObject_Void((void*)lib); 38 38 } 39 39 … … 66 66 67 67 if (retObj) { 68 newObjHandle = storeObject_ Lib(retObj);68 newObjHandle = storeObject_Void((void*)retObj); 69 69 } 70 70 } … … 198 198 if (childNode) { 199 199 if (*childHandle < 1) { 200 newObjHandle = storeObject_ Lib(childNode);200 newObjHandle = storeObject_Void((void*)childNode); 201 201 } 202 202 else { 203 newObjHandle = storeObject_ Lib(childNode,*childHandle);203 newObjHandle = storeObject_Void((void*)childNode,*childHandle); 204 204 } 205 205 } … … 415 415 // store the whole list, 416 416 // need to make a way to read the nodes 417 newObjHandle = storeObject_ Lib(list);417 newObjHandle = storeObject_Void((void*)list); 418 418 // Py_DECREF(list); 419 419 } … … 848 848 849 849 if (removedObj) { 850 newObjHandle = storeObject_ Lib(removedObj);850 newObjHandle = storeObject_Void((void*)removedObj); 851 851 // Py_DECREF(removedObj); 852 852 } -
trunk/src/core/RpUtilsFInterface.cc
r1090 r1105 33 33 { 34 34 const char* inText; 35 int retVal; 35 36 inText = null_terminate(text, text_len); 36 if (inText != NULL) {37 return 1;38 }39 int retVal;40 37 retVal = Rappture::Utils::progress(*percentPtr, inText); 41 38 free((void*)inText); 39 inText = NULL; 42 40 return retVal; 43 41 }
Note: See TracChangeset
for help on using the changeset viewer.