Search Results

Search found 101 results on 5 pages for 'russ k'.

Page 5/5 | < Previous Page | 1 2 3 4 5 

  • Dangling pointers and double free

    - by user151410
    After some painful experiences, I understand the problem of dangling pointers and double free. I am seeking proper solutions. aStruct has a number of fields including other arrays. aStruct *A=NULL, *B = NULL; A = (aStruct*) calloc(1, sizeof(sStruct)); B = A; free_aStruct(A); ... //bunch of other code in various places. ... free_aStruct(B); Is

    Read the article

< Previous Page | 1 2 3 4 5