Changes in / [1b5ab36:881fd4e]


Ignore:
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • conf.c

    r1b5ab36 r881fd4e  
    9595                        conf->port = i;
    9696                }
    97                 else if( opt == 'p' )
     97                else if( opt == 'P' )
    9898                {
    9999                        g_free( conf->pidfile );
  • ipc.c

    r1b5ab36 r881fd4e  
    507507        }
    508508
    509         if (bind(serversock, &un_addr, sizeof(un_addr)) == -1) {
     509        if (bind(serversock, (struct sockaddr *)&un_addr, sizeof(un_addr)) == -1) {
    510510                log_message( LOGLVL_WARNING, "Unable to bind UNIX socket to %s: %s", IPCSOCKET, strerror(errno) );
    511511                return 0;
     
    571571        ipc_to_children_str( "OPERMSG :New BitlBee master process started (version " BITLBEE_VERSION ")\r\n" );
    572572       
     573        fclose( fp );
    573574        return 1;
    574575}
  • irc.c

    r1b5ab36 r881fd4e  
    557557       
    558558        u = user_find( irc, irc->mynick );
    559         if( u ) is_private = u->is_private;
     559        is_private = u->is_private;
    560560       
    561561        va_start( params, format );
  • protocols/jabber/jabber.c

    r1b5ab36 r881fd4e  
    15491549        if(jd->gjc != NULL) {
    15501550                gjab_delete(jd->gjc);
     1551                /* YAY for modules with their own memory pool managers!...
    15511552                g_free(jd->gjc->sid);
     1553                And a less sarcastic yay for valgrind. :-) */
    15521554                jd->gjc = NULL;
    15531555        }
  • protocols/jabber/xmlparse.c

    r1b5ab36 r881fd4e  
    14611461s = protocolEncodingName;
    14621462#endif
    1463     if ((ns ? XmlInitEncodingNS : XmlInitEncoding)(&initEncoding, &encoding, s))
     1463    if (ns ? XmlInitEncodingNS(&initEncoding, &encoding, s) : XmlInitEncoding(&initEncoding, &encoding, s))
    14641464        return XML_ERROR_NONE;
    14651465    return handleUnknownEncoding(parser, protocolEncodingName);
     
    14751475    int standalone = -1;
    14761476    if (!(ns
    1477             ? XmlParseXmlDeclNS
    1478             : XmlParseXmlDecl)(isGeneralTextEntity,
     1477            ? XmlParseXmlDeclNS(isGeneralTextEntity,
    14791478                               encoding,
    14801479                               s,
     
    14841483                               &encodingName,
    14851484                               &newEncoding,
    1486                                &standalone))
     1485                               &standalone)
     1486            : XmlParseXmlDecl(isGeneralTextEntity,
     1487                               encoding,
     1488                               s,
     1489                               next,
     1490                               &eventPtr,
     1491                               &version,
     1492                               &encodingName,
     1493                               &newEncoding,
     1494                               &standalone)))
    14871495        return XML_ERROR_SYNTAX;
    14881496    if (!isGeneralTextEntity && standalone == 1)
     
    15371545            }
    15381546            enc = (ns
    1539                    ? XmlInitUnknownEncodingNS
    1540                    : XmlInitUnknownEncoding)(unknownEncodingMem,
     1547                   ? XmlInitUnknownEncodingNS(unknownEncodingMem,
    15411548                                             info.map,
    15421549                                             info.convert,
    1543                                              info.data);
     1550                                             info.data)
     1551                   : XmlInitUnknownEncoding(unknownEncodingMem,
     1552                                             info.map,
     1553                                             info.convert,
     1554                                             info.data));
    15441555            if (enc) {
    15451556                unknownEncodingData = info.data;
  • protocols/nogaim.c

    r1b5ab36 r881fd4e  
    612612                        return;
    613613                }
    614                 return;
     614                /* Why did we have this here....
     615                return; */
    615616        }
    616617       
  • protocols/oscar/oscar_util.c

    r1b5ab36 r881fd4e  
    109109
    110110        curPtr = sn;
    111         while ( (*curPtr) != (char) NULL) {
     111        while ( (*curPtr) != (char) '\0') {
    112112                if ((*curPtr) != ' ')
    113113                i++;
     
    140140        curPtr1 = sn1;
    141141        curPtr2 = sn2;
    142         while ( (*curPtr1 != (char) NULL) && (*curPtr2 != (char) NULL) ) {
     142        while ( (*curPtr1 != (char) '\0') && (*curPtr2 != (char) '\0') ) {
    143143                if ( (*curPtr1 == ' ') || (*curPtr2 == ' ') ) {
    144144                        if (*curPtr1 == ' ')
  • protocols/oscar/service.c

    r1b5ab36 r881fd4e  
    881881#endif
    882882
     883/* len can't be 0 here anyway...
    883884                } else if ((offset == 0x00001000) && (len == 0x00000000)) {
    884885
     
    887888                        aimbs_put32(&fr->data, 0xe9800998);
    888889                        aimbs_put32(&fr->data, 0xecf8427e);
    889 
     890*/
    890891                } else
    891892                        do_error_dialog(sess->aux_data, "WARNING: unknown hash request", "Gaim");
  • set.c

    r1b5ab36 r881fd4e  
    150150        if( s )
    151151        {
    152                 t->next = s->next;
     152                if( t )
     153                        t->next = s->next;
     154                else
     155                        irc->set = s->next;
     156               
    153157                g_free( s->key );
    154158                if( s->value ) g_free( s->value );
Note: See TracChangeset for help on using the changeset viewer.