Changeset d75597b


Ignore:
Timestamp:
2007-11-20T00:13:58Z (16 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
56f260a
Parents:
3e1e11af
Message:

Fixed memory management issues introduced by at least the getaddrinfo()
change. (Patch from arnau)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • conf.c

    r3e1e11af rd75597b  
    4848       
    4949        conf->iface = NULL;
    50         conf->port = "6667";
     50        conf->port = g_strdup( "6667" );
    5151        conf->nofork = 0;
    5252        conf->verbose = 0;
    53         conf->primary_storage = "xml";
     53        conf->primary_storage = g_strdup( "xml" );
    5454        conf->migrate_storage = g_strsplit( "text", ",", -1 );
    5555        conf->runmode = RUNMODE_INETD;
Note: See TracChangeset for help on using the changeset viewer.