Changeset fab3d2d


Ignore:
Timestamp:
2008-06-22T13:02:15Z (16 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
89d736a
Parents:
de82335
Message:

Shut up a "mostly harmless" warning (this NULL would never actually be
dereferenced as far as I can see).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/oscar/oscar.c

    rde82335 rfab3d2d  
    20512051        tmp = 0;
    20522052        for (curitem=sess->ssi.items; curitem; curitem=curitem->next) {
    2053                 nrm = normalize(curitem->name);
     2053                nrm = curitem->name ? normalize(curitem->name) : NULL;
    20542054               
    20552055                switch (curitem->type) {
Note: See TracChangeset for help on using the changeset viewer.