From: falcovorbis <fal...@us...> - 2024-05-05 08:23:56
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via bdaec39f4a286177d0b8e432da5a0e7a127d1732 (commit) via 6087531a0e879d5bc9461f1baab74a6fa8217257 (commit) from dce7ef2a8f8c36a4487e1688daa62da847c4ef42 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit bdaec39f4a286177d0b8e432da5a0e7a127d1732 Merge: dce7ef2a 6087531a Author: Luke Benstead <ka...@gm...> Date: Sun May 5 09:23:14 2024 +0100 Merge pull request #547 from KallistiOS/fsantizier_buildfix Forgot a closing brace in previous commit! commit 6087531a0e879d5bc9461f1baab74a6fa8217257 Author: Falco Girgis <gyr...@gm...> Date: Sun May 5 03:18:24 2024 -0500 Forgot a closing brace in previous commit! ----------------------------------------------------------------------- Summary of changes: kernel/fs/fs_random.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/fs/fs_random.c b/kernel/fs/fs_random.c index 1008c2c3..6971ce3f 100644 --- a/kernel/fs/fs_random.c +++ b/kernel/fs/fs_random.c @@ -56,6 +56,7 @@ static rnd_fh_t *rnd_open_file(vfs_handler_t *vfs, const char *fn, int mode) { if((mode & O_MODE_MASK) != O_RDONLY) { errno = EPERM; return NULL; + } /* Malloc a new fh struct */ fd = malloc(sizeof(rnd_fh_t)); hooks/post-receive -- A pseudo Operating System for the Dreamcast. |