Changeset 2745

Timestamp:
10/14/07 19:48:45 (8 months ago)
Author:
mentor
Message:

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

Files:
  • madwifi/trunk/ath/if_ath.c (modified) (1 diff)

Legend:

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

    r2742 r2745  
    4356 4356                         } 
    4357 4357                 } 
    4358                   *bflink = 0;                    /* link of last frame */ 
      4358                 if (bflink != NULL) 
      4359                         *bflink = 0;                    /* link of last frame */ 
    4359 4360         } 
    4360 4361