The source project of this merge request has been removed.
vrend_renderer: fix undefined shift by 31 bits.
Left shift int 1 by 31 bit is undefined behavior, which causes fuzzer failure.
Change 1 to 1u to avoid the runtime error.
Due to an influx of spam, we have had to impose restrictions on new accounts. Please see this wiki page for instructions on how to get full permissions. Sorry for the inconvenience.
Left shift int 1 by 31 bit is undefined behavior, which causes fuzzer failure.
Change 1 to 1u to avoid the runtime error.