Seem to have a memory allocation problem and think it's because in my struct, there is a pointer to an array of another struct. However, I'm not initializing this array and not sure how:

typedef struct listitem {
    struct listitem *next;
    Entry *entry;
} ListItem;

typedef struct list {
    ListItem *table[100];
} List;

List *initialize(void)
{
    List *tmp;

    if ((tmp = (List *)malloc(sizeof(List))) == NULL)
        return NULL;
    return tmp;
}

Hope that makes sense and you could help!

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

You will need to call malloc again.

typedef struct listitem {
    struct listitem *next;
    Entry *entry;
} ListItem;

typedef struct list {
    ListItem *table[100];
} List;

List *initialize(void)
{
    List *tmp;

    if (!(tmp = (List *)malloc(sizeof(List))))
        return NULL;
    for(int i = 0; i < 100; i++) {
        tmp->table[i] = (ListItem*)malloc(sizeof(ListItem));
    }
    return tmp;
}
link|improve this answer
How can you just access table though, you're not setting the pointer in the struct to it? – Igor K Oct 25 '10 at 22:56
@Igor K: Whoops, my mistake. Used to proper member functions. – DeadMG Oct 25 '10 at 23:01
Thanks @DeadMG, tried this however I still get the same error with my program, although thats another question! – Igor K Oct 25 '10 at 23:03
feedback
bzero(tmp, sizeof(*tmp));

just zeroes the contents of your struct list. If that is what you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.