wsimmons
09-27-2001, 12:33 AM
I am getting a segmentation fault (core dumped) when a program that I am writing calls the following function:
void test_fx()
{
MainDataSetPtr here_ptr;//local scope
here_ptr = head;
do
{
cout<<head->d_structCloneID<<"\n";
cout<<head->d_structSubclone<<"\n";
//a few more struct variables that I don't want to
//take the time to write at the moment
here_ptr = here_ptr-> link_down;
}while (here_ptr-> link_down != NULL);
return;
}
The struct worked fine in other functions (I can load it with data)that I have used in the porgram. but now that I am trying to extact the data from it for processing (including file output streams) there seems to be difficulty in the programming. Any help with this? Thank you.
:confused:
void test_fx()
{
MainDataSetPtr here_ptr;//local scope
here_ptr = head;
do
{
cout<<head->d_structCloneID<<"\n";
cout<<head->d_structSubclone<<"\n";
//a few more struct variables that I don't want to
//take the time to write at the moment
here_ptr = here_ptr-> link_down;
}while (here_ptr-> link_down != NULL);
return;
}
The struct worked fine in other functions (I can load it with data)that I have used in the porgram. but now that I am trying to extact the data from it for processing (including file output streams) there seems to be difficulty in the programming. Any help with this? Thank you.
:confused: