aboutsummaryrefslogtreecommitdiff
path: root/test/fuzzers
AgeCommit message (Collapse)Author
2022-01-24CI: transition tests from autotools to cmake (#3023)Mike Taves
2021-10-10ossfuzz builds: switch to cmake to build PROJEven Rouault
2021-04-30Fix ossfuzz builds [ci skip]Even Rouault
2020-11-28test/fuzzers: remove standard_fuzzer that used proj_api.h now removedEven Rouault
2020-11-20Weed out proj_api.h datatypes and replace them with their proj.h counterpartsKristian Evers
2020-11-20Remove ACCEPT_USE_OF_DEPRECATED_PROJ_API_H macroKristian Evers
2020-11-20Remove proj_api.hKristian Evers
Removes proj_api.h from the public API. The contents of the header file has been moved to proj_internal.h verbatim and any references to proj_api.h has been changed to proj_internal.h. The documentation of proj_api.h has been removed. The only exception to this is the API migration guides which still mention the old API. Fixes #837
2020-05-09scripts/fix_typos.sh: fix URLs to dictionaries, and fix typos spottedEven Rouault
2020-02-01test/fuzzers/build.sh: statically link sqlite3 for i386 buildsEven Rouault
2020-01-29test/fuzzers/build.sh: build with static libtiff [ci skip]Even Rouault
2020-01-26Fix ossfuzz builds [ci skip]Even Rouault
2020-01-13test/fuzzers/standard_fuzzer.cpp: remove dependency to proj_internal.hEven Rouault
2019-09-17standard_fuzzer.cpp: tweak to be able to compile it against libproj.soEven Rouault
2019-03-24Add proj_crs_to_crs_fuzzerEven Rouault
2019-03-24fuzzer: limit input size to avoid useless testing of huge proj stringsEven Rouault
2019-02-01test/fuzzers: fix build of standard_fuzzerEven Rouault
2018-11-26test/fuzzers/build_google_oss_fuzzers.sh: statically link against sqlite3Even Rouault
2018-11-26test/fuzzers/build_google_oss_fuzzers.sh: link against libsqlite3Even Rouault
2018-09-18Rename nad/ directory as data/Even Rouault
2017-11-11Fix various memory leaks. Fixes ↵Even Rouault
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3573 , https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3643 and https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3641 . Credit to OSS Fuzz
2017-10-19Prevent crashes and leaks on allocation failure (#606)Aaron Puchert
* Prevent crashes and leaks on allocation failure Memory allocation can fail. We need to gracefully handle this case and prevent dereferencing null pointers. * Make NULL checks consistent within a file * Properly report allocation errors * Improve cleanup in pj_gc_reader.c * Implement pj_strdup and use instead of strdup The function strdup is not part of ANSI C 89, but a POSIX extension. Therefore we can not rely on it being available on all platforms.
2017-05-31standard_fuzzer: add BINARY_2D and BINARY_3D modesEven Rouault
2017-05-30catalog: memory leak and crashes related fixesEven Rouault
* pj_transform() crashes on a catalog that has no matching grid * pj_free() and pj_gc_unloadall() badly interact. No longer try to free the catalog object in pj_free(). That is the job of pj_gc_unloadall() * Fix memory leaks in pj_gc_readcatalog() and pj_gc_unloadall() Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1923 Credit to OSS Fuzz.
2017-05-23test/fuzzers/README.TXT: update instructionsEven Rouault
2017-05-22Add test/fuzzers/README.txtEven Rouault
2017-05-21Add fuzzer for Google OSS FuzzEven Rouault