Changeset 038a8d0 in mainline


Ignore:
Timestamp:
2025-07-03T14:52:15Z (3 months ago)
Author:
Miroslav Cimerman <mc@…>
Children:
b247c714
Parents:
996d31ac
Message:

hr: hr_client_conn(): return when no vol is found

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/bd/hr/hr.c

    r996d31ac r038a8d0  
    631631        } else {
    632632                vol = hr_get_volume(svc_id);
    633                 if (vol == NULL)
     633                if (vol == NULL) {
    634634                        async_answer_0(icall, ENOENT);
     635                        return;
     636                }
    635637                bd_conn(icall, &vol->hr_bds);
    636638        }
Note: See TracChangeset for help on using the changeset viewer.