Hi,

I'm trying to set up a tile server with tirex but using the latest svn code
the mapnik backend fails with a buffer overflow. Debugging the code it
turns out that the offending code was the line 129 of metatilehandler.cc :

       memset(&offsets, 0, numtiles * sizeof(entry));

 I modified it as:

       memset(offsets, 0, numtiles * sizeof(entry));

and everything works.

Bye,

Stefano
_______________________________________________
dev mailing list
dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/dev

Reply via email to