Changeset dd89a55


Ignore:
Timestamp:
2006-05-15T17:57:12Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
10a0abf
Parents:
764b0aba
Message:

Fixed various memory leaks/other possible problems after code review.

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • conf.c

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

    r764b0aba rdd89a55  
    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

    r764b0aba rdd89a55  
    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/nogaim.c

    r764b0aba rdd89a55  
    612612                        return;
    613613                }
    614                 return;
     614                /* Why did we have this here....
     615                return; */
    615616        }
    616617       
  • protocols/oscar/service.c

    r764b0aba rdd89a55  
    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

    r764b0aba rdd89a55  
    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.