You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-puzzle/fbg/files/fbg-0.9-missing-return.patch

9 lines
280 B

Lack of return leads to segmentation fault on startup.
https://bugs.gentoo.org/815259
--- a/src/glTGAImage.cc
+++ b/src/glTGAImage.cc
@@ -180,2 +180,3 @@
glTexImage2D(GL_TEXTURE_2D, 0, type, getWidth(), getHeight(), 0, type, GL_UNSIGNED_BYTE, getImageData());
+ return true;
}