| 1086 | |
| 1087 | #if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) || !defined(STBI_NO_PNM) |
| 1088 | static void* stbi__malloc_mad4(int a, int b, int c, int d, int add) { |
| 1089 | if (!stbi__mad4sizes_valid(a, b, c, d, add)) |
| 1090 | return NULL; |
| 1091 | return stbi__malloc(a * b * c * d + add); |
| 1092 | } |
| 1093 | #endif |
| 1094 | |
| 1095 | // stbi__err - error |
no test coverage detected