ValveSoftware / voglperf

Benchmarking tool for Linux OpenGL games. Spews frame information, logs frametimes.
Other
201 stars 31 forks source link

Fix several GCC warnings #39

Open rilysh opened 1 year ago

rilysh commented 1 year ago
  1. webby_data().ws_connections.empty() returns boolean but it's not handled anywhere. Casting with void will suppress it.
  2. In line 346 strncpy is trying to copy the string on the destination which has the same size as the source string. It might overlap string size when the source will be at the same size as destination.