Jaihson Kresak

Results 6 issues of Jaihson Kresak

Hey Dan! I found a memory leak in the fopen() function. In case of an error, we do not free root_path or descriptor_private_data. this would create a memory leak, especially...

Hey! There are a few problems with the code to switch to pmode: 1. we should turn on a20 line before switching to pmode 2. we set the segment registers...

Hi! In PeachOS Master, there is a possible memory leak in process_load_for_slot. Say we get an error on line 500: `res = process_load_data(filename, _process); if (res < 0) { goto...

Hey Dan! Correct me if i am wrong, but I believe there is an error in fat16_read. We never advance fat_desc->pos, thus in a situation such that we would read...

process_load_for_slot kzallocs a new struct process, but never kfrees it. Possible solution: process_unlink(): `processes[process->id] = 0;` `kfree(process);` `if (current_process == process)` `{` ` process_switch_to_any();` `}`

Add DGL to the list under Frameworks.