[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [rtl] unable to handle kernel paging request (2)



Raul wrote:

> typedef struct MyStructure_tag MyStructure;
> struct MyStructure_tag{
>    int var1;
>    char var2;
>    MyStructure  *structChild;
>    long var3
>    ...
> }
> MyStructure  *S
>
> the error comes up when I try to acces var2 from
> within structChild, that is:
>
> S->structChild->var1=3
>

Obvious question, but S->structChild != NULL, right?


--Gordon