Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update geohash.c #6

Open
wants to merge 9 commits into
base: master
Choose a base branch
from

Commits on Apr 6, 2019

  1. Update geohash.c

    normalblaster authored Apr 6, 2019
    Configuration menu
    Copy the full SHA
    76974d6 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2019

  1. Added the #ifdef __cplusplus stuff so geohash.h can be used with

    c++ code.
    John Tomlinson authored and John Tomlinson committed Apr 7, 2019
    Configuration menu
    Copy the full SHA
    f15f30e View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2019

  1. The previous mods cause a buffer overrun because of the recursive

    call to get_neighbor.
    John Tomlinson authored and John Tomlinson committed Apr 19, 2019
    Configuration menu
    Copy the full SHA
    257d100 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2019

  1. Changed the char *hash paramter in geohash_getneighbor and geohash_ne…

    …ighbors
    
    ifunctions to a const char *. This makes it more compatible with C++ programs.
    Of course this mean you can only use modern C compilers.
    John Tomlinson authored and John Tomlinson committed Apr 27, 2019
    Configuration menu
    Copy the full SHA
    b85746f View commit details
    Browse the repository at this point in the history
  2. Changed the char *hash paramter in get_neighbor and geohash_neighbors

    ifunctions to a const char *. This makes it more compatible with C++ programs.
    Of course this mean you can only use modern C compilers.
    John Tomlinson authored and John Tomlinson committed Apr 27, 2019
    Configuration menu
    Copy the full SHA
    c7bda62 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'normalblaster-patch-buffer-overrun-memory-leak' of http…

    …s://github.com/normalblaster/libgeohash into normalblaster-patch-buffer-overrun-memory-leak
    John Tomlinson authored and John Tomlinson committed Apr 27, 2019
    Configuration menu
    Copy the full SHA
    e6efe00 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'normalblaster-patch-buffer-overrun-memory-leak' of http…

    …s://github.com/normalblaster/libgeohash into normalblaster-patch-buffer-overrun-memory-leak
    John Tomlinson authored and John Tomlinson committed Apr 27, 2019
    Configuration menu
    Copy the full SHA
    e86c49e View commit details
    Browse the repository at this point in the history
  5. Merge branch 'normalblaster-patch-buffer-overrun-memory-leak' of http…

    …s://github.com/normalblaster/libgeohash into normalblaster-patch-buffer-overrun-memory-leak
    John Tomlinson authored and John Tomlinson committed Apr 27, 2019
    Configuration menu
    Copy the full SHA
    91fa852 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2019

  1. Changed the Makefile to create a shared object which is more useful for

    building linux apps.
    John Tomlinson authored and John Tomlinson committed May 5, 2019
    Configuration menu
    Copy the full SHA
    3c8b127 View commit details
    Browse the repository at this point in the history