Changeset 173 for soft/giet_vm/memo/src/libelfpp/elfpp_section.cc
- Timestamp:
- Jul 18, 2012, 4:59:19 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/memo/src/libelfpp/elfpp_section.cc
r163 r173 23 23 #include <stdlib.h> 24 24 #include <cstring> 25 #include <stdlib.h> 26 25 27 26 28 #include <dpp/foreach> … … 81 83 82 84 size_ = size; 85 } 86 87 void section::set_content(void* a) 88 { 89 if(content_) 90 free(content_); 91 content_ = (uint8_t*) a; 83 92 } 84 93
Note: See TracChangeset
for help on using the changeset viewer.