Changeset 2745

Show
Ignore:
Timestamp:
10/14/07 19:48:45 (3 years ago)
Author:
mentor
Message:

Try not to dereference null pointers; the loop above might not have run

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • madwifi/trunk/ath/if_ath.c

    r2742 r2745  
    43564356                        } 
    43574357                } 
    4358                 *bflink = 0;                    /* link of last frame */ 
     4358                if (bflink != NULL) 
     4359                        *bflink = 0;                    /* link of last frame */ 
    43594360        } 
    43604361