Changes in / [a9db9b8:06e2209] in mainline


Ignore:
Location:
uspace
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/netecho/netecho.c

    ra9db9b8 r06e2209  
    173173                                } else if (str_lcmp(argv[index] + 2, "count=", 6) == 0) {
    174174                                        rc = arg_parse_int(argc, argv, &index, &count, 8);
     175                                        if (rc != EOK)
     176                                                return rc;
    175177                                } else if (str_lcmp(argv[index] + 2, "family=", 7) == 0) {
    176178                                        rc = arg_parse_name_int(argc, argv, &index, &family, 9, socket_parse_protocol_family);
  • uspace/lib/c/generic/net/socket_client.c

    ra9db9b8 r06e2209  
    253253                        rc = dyn_fifo_push(&socket->accepted, 1,
    254254                            SOCKET_MAX_ACCEPTED_SIZE);
    255                         if (rc != EOK) {
     255                        if (rc == EOK) {
    256256                                // signal the accepted socket
    257257                                fibril_condvar_signal(&socket->accept_signal);
Note: See TracChangeset for help on using the changeset viewer.