lutoma / xelix

💻⚙ Xelix is a hobby Unix-like kernel with GNU userland for x86
https://xelix.org
GNU General Public License v3.0
61 stars 6 forks source link

CB.c When using void pointers in calculations, the behaviour is undefined. #92

Open ZanyXDev opened 4 years ago

ZanyXDev commented 4 years ago

cb.c

vfs_dirent_t* dest = (vfs_dirent_t*)(buf + offset);

buf' is of type void *. When using void pointers in calculations, the behaviour is undefined.