I currently have the following code.
struct qnode
{
char *path;
struct qnode *next;
}
typedef struct qnode Node;
My code fails at this point however when I try to malloc space for for within the struct qnode.
void add(Node *front, Node *back,char **path)
{
/* Create the new node */
Node *cur = (Node *)malloc(sizeof(Node));
/* Verify node successfully created */
if(cur)
{
/* Populate Members of Node */
cur->path = malloc(strlen(*path)); /* fails here */
printf("Malloc path success");
cur->path = *path;
I have verified that strlen is indeed operating on the correct pointer and it is indeed returning the length of size. For some reason though I get a segmentation fault at this point and I don't understand why.
F.y.i This is part of an assignment HOWEVER this simple line of malloc is not something that was specifically assigned neither was using the C language. I am allowed to do c++ on the assignment but i've chosen C to get some more knowledge about the language.
Thanks for the Help!
path? Why are you discarding the pointer returned by the secondmalloc? – Mat Oct 13 '11 at 8:33