Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ EXTRA_DIST = makefile.vc CMakeLists.txt autogen.sh \
tests/shp_test.cc \
tests/shpdxf_test.cc \
tests/shpgeo_test.cc \
tests/shputils_test.cc \
tests/test1.sh tests/test2.sh tests/test3.sh \
tests/expect1.out tests/expect2.out tests/expect3.out \
tests/shape_eg_data/3dpoints.dbf \
Expand Down
12 changes: 6 additions & 6 deletions contrib/shpgeo.c
Original file line number Diff line number Diff line change
Expand Up @@ -1485,12 +1485,12 @@ SHPObject *SHPUnCompound(const SHPObject *psCShape, int *ringNumber)
*ringNumber = -1;
else
*ringNumber = ring;
/* I am strictly assuming that all R- parts of a complex object
* directly follow their R+, so when we hit a new R+ its a
* new part of a compound object
* a SHPClean may be needed to enforce this as it is not part
* of ESRI's definition of a SHPfile
*/
/* I am strictly assuming that all R- parts of a complex object
* directly follow their R+, so when we hit a new R+ its a
* new part of a compound object
* a SHPClean may be needed to enforce this as it is not part
* of ESRI's definition of a SHPfile
*/

#ifdef DEBUG2
printf("(SHPUnCompound) asked for ring %d, lastring is %d \n", lRing, ring);
Expand Down
Loading
Loading