You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently some global variables in llvm bc files are initialized to Null, it will result in some incorrect results
For example, in file_system_type() function ( https://elixir.bootlin.com/linux/v5.5-rc5/source/fs/filesystems.c#L52 )
file_systems is null in the bc file, and the loop will be skipped and null pointer is returned directly. It will terminate the following execution
Currently, let's symbolize the global variables which equal null first? Maybe we need to symbolize more global variables later
test case, /home/zzhan173/repos/Linux_kernel_UC_KLEE/configs/find_filesystem.json
The text was updated successfully, but these errors were encountered:
Currently some global variables in llvm bc files are initialized to Null, it will result in some incorrect results
For example, in file_system_type() function ( https://elixir.bootlin.com/linux/v5.5-rc5/source/fs/filesystems.c#L52 )
file_systems is null in the bc file, and the loop will be skipped and null pointer is returned directly. It will terminate the following execution
Currently, let's symbolize the global variables which equal null first? Maybe we need to symbolize more global variables later
test case, /home/zzhan173/repos/Linux_kernel_UC_KLEE/configs/find_filesystem.json
The text was updated successfully, but these errors were encountered: