Changeset 0bb1b7f for skype


Ignore:
Timestamp:
2007-08-20T01:50:57Z (17 years ago)
Author:
VMiklos <vmiklos@…>
Branches:
master
Children:
77c1abe
Parents:
93ece66
Message:

skype_buddy_msg(): add a missing check

File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/skype.c

    r93ece66 r0bb1b7f  
    191191
    192192        ptr = strchr(who, '@');
    193         *ptr = '\0';
     193        if(ptr)
     194                *ptr = '\0';
    194195
    195196        buf = g_strdup_printf("MESSAGE %s %s\n", who, message);
Note: See TracChangeset for help on using the changeset viewer.