Rev 4344 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4344 | Rev 4348 | ||
|---|---|---|---|
| Line 205... | Line 205... | ||
| 205 | 205 | ||
| 206 | rc = copy_from_uspace(namebuf, uspace_name, name_len); |
206 | rc = copy_from_uspace(namebuf, uspace_name, name_len); |
| 207 | if (rc != 0) |
207 | if (rc != 0) |
| 208 | return (unative_t) rc; |
208 | return (unative_t) rc; |
| 209 | 209 | ||
| 210 | namebuf[name_len] = '\0'; |
210 | namebuf[name_len] = 0; |
| 211 | 211 | ||
| 212 | /* Spawn the new task. */ |
212 | /* Spawn the new task. */ |
| 213 | 213 | ||
| 214 | rc = program_create_loader(&p, namebuf); |
214 | rc = program_create_loader(&p, namebuf); |
| 215 | if (rc != 0) |
215 | if (rc != 0) |