Rev 2735 | Rev 2739 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2735 | Rev 2736 | ||
|---|---|---|---|
| Line 202... | Line 202... | ||
| 202 | tmpfs_dentry_t *tmp = dentry->parent->child; |
202 | tmpfs_dentry_t *tmp = dentry->parent->child; |
| 203 | while (tmp->sibling != dentry) |
203 | while (tmp->sibling != dentry) |
| 204 | tmp = tmp->sibling; |
204 | tmp = tmp->sibling; |
| 205 | tmp->sibling = dentry->sibling; |
205 | tmp->sibling = dentry->sibling; |
| 206 | } |
206 | } |
| - | 207 | dentry->sibling = NULL; |
|
| - | 208 | dentry->parent = NULL; |
|
| 207 | 209 | ||
| 208 | return EOK; |
210 | return EOK; |
| 209 | } |
211 | } |
| 210 | 212 | ||
| 211 | void tmpfs_lookup(ipc_callid_t rid, ipc_call_t *request) |
213 | void tmpfs_lookup(ipc_callid_t rid, ipc_call_t *request) |