Changes in uspace/lib/c/generic/bd_srv.c [75751db6:ccfe9c3] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/bd_srv.c
r75751db6 rccfe9c3 70 70 async_answer_0(rcallid, ENOTSUP); 71 71 async_answer_0(callid, ENOTSUP); 72 free(buf); 72 73 return; 73 74 } … … 77 78 async_answer_0(rcallid, ENOMEM); 78 79 async_answer_0(callid, ENOMEM); 80 free(buf); 79 81 return; 80 82 } … … 112 114 async_answer_0(rcallid, ENOTSUP); 113 115 async_answer_0(callid, ENOTSUP); 116 free(buf); 114 117 return; 115 118 } … … 119 122 async_answer_0(rcallid, ENOMEM); 120 123 async_answer_0(callid, ENOMEM); 124 free(buf); 121 125 return; 122 126 }
Note:
See TracChangeset
for help on using the changeset viewer.