Rev 4055 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4055 | Rev 4296 | ||
|---|---|---|---|
| Line 211... | Line 211... | ||
| 211 | 211 | ||
| 212 | rc = copy_from_uspace(namebuf, uspace_name, name_len); |
212 | rc = copy_from_uspace(namebuf, uspace_name, name_len); |
| 213 | if (rc != 0) |
213 | if (rc != 0) |
| 214 | return (unative_t) rc; |
214 | return (unative_t) rc; |
| 215 | 215 | ||
| 216 | namebuf[name_len] = '\0'; |
216 | namebuf[name_len] = 0; |
| 217 | 217 | ||
| 218 | /* Spawn the new task. */ |
218 | /* Spawn the new task. */ |
| 219 | 219 | ||
| 220 | rc = program_create_loader(&p, namebuf); |
220 | rc = program_create_loader(&p, namebuf); |
| 221 | if (rc != 0) |
221 | if (rc != 0) |