gd_compat.c 983 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #ifdef HAVE_CONFIG_H
  2. #include "config.h"
  3. #else
  4. #include "php_config.h"
  5. #endif
  6. #ifdef HAVE_GD_PNG
  7. /* needs to be first */
  8. # include <png.h>
  9. #endif
  10. #ifdef HAVE_GD_JPG
  11. # include <jpeglib.h>
  12. #endif
  13. #include "gd_compat.h"
  14. #include "php.h"
  15. #ifdef HAVE_GD_JPG
  16. const char * gdJpegGetVersionString()
  17. {
  18. switch(JPEG_LIB_VERSION) {
  19. case 62:
  20. return "6b";
  21. break;
  22. case 70:
  23. return "7";
  24. break;
  25. case 80:
  26. return "8";
  27. break;
  28. default:
  29. return "unknown";
  30. }
  31. }
  32. #endif
  33. #ifdef HAVE_GD_PNG
  34. const char * gdPngGetVersionString()
  35. {
  36. return PNG_LIBPNG_VER_STRING;
  37. }
  38. #endif
  39. int overflow2(int a, int b)
  40. {
  41. if(a <= 0 || b <= 0) {
  42. php_error_docref(NULL, E_WARNING, "one parameter to a memory allocation multiplication is negative or zero, failing operation gracefully\n");
  43. return 1;
  44. }
  45. if(a > INT_MAX / b) {
  46. php_error_docref(NULL, E_WARNING, "product of memory allocation multiplication would exceed INT_MAX, failing operation gracefully\n");
  47. return 1;
  48. }
  49. return 0;
  50. }