struct LeafDataEntry
{
void *key;
int a;
};
int main(){
//I want to declare a vector of structure
vector<LeafDataEntry> leaves;
for(int i=0; i<100; i++){
leaves[i].key = (void *)malloc(sizeof(unsigned));
//assign some value to leaves[i].key using memcpy
}
}
I am getting SEG FAULT error for this code while doing the malloc in for loop above....Any suggestions for any alternative to assign memory to the pointer in the vector of structs.
malloc... – Kerrek SB Nov 14 '12 at 23:38keywill be ultimately storing, what type of data? – Michael Sh Nov 14 '12 at 23:39std::vectorthat causes the segfault in this case... – Dietrich Epp Nov 14 '12 at 23:40leaves[i]doesn't exist. The two answers provided so far address the problem. – David Hammen Nov 14 '12 at 23:43