jdunlap
jdunlap
If LanguageDefinition.mSingleLineComment is left blank, then all lines are detected as being a comment. This PR fixes this issue.
When downloading a course, the browser repeatedly steals focus. The browser needs to not steal focus while the script is running to allow the user to complete other tasks while...
In file.c, you write file_get_descriptor as ``` static struct file_descriptor* file_get_descriptor(int fd) { if (fd = PEACHOS_MAX_FILE_DESCRIPTORS) { return 0; } // Descriptors start at 1 int index = fd...
In elfloader.c, starting on line 209 in elf_load, we have the following code: ``` elf_file->elf_memory = kzalloc(stat.filesize); res = fread(elf_file->elf_memory, stat.filesize, 1, fd); if (res < 0) { goto out;...