Changeset caad59a in mainline for uspace


Ignore:
Timestamp:
2010-04-19T13:34:18Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9f1362d4
Parents:
3bdf3d3
Message:

move to GCC 4.5.0
fix two cases of uninitialized variable suspicion (hopefully in a conservative and harmless way)

Location:
uspace
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/run_expr.c

    r3bdf3d3 rcaad59a  
    12811281                addr_prop->u.named->prop_d = deleg_p;
    12821282                break;
     1283        default:
     1284                ritem = NULL;
    12831285        }
    12841286
  • uspace/lib/socket/generic/socket_client.c

    r3bdf3d3 rcaad59a  
    299299static int socket_generate_new_id(void){
    300300        sockets_ref sockets;
    301         int socket_id;
     301        int socket_id = 0;
    302302        int count;
    303303
  • uspace/lib/socket/packet/packet_client.c

    r3bdf3d3 rcaad59a  
    156156packet_t packet_get_copy(int phone, packet_t packet){
    157157        packet_t copy;
    158         uint8_t * src;
    159         uint8_t * dest;
     158        uint8_t * src = NULL;
     159        uint8_t * dest = NULL;
    160160        size_t addrlen;
    161161
Note: See TracChangeset for help on using the changeset viewer.