~ubuntu-branches/ubuntu/wily/spatialite/wily-proposed

« back to all changes in this revision

Viewing changes to examples/demo1.c

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2015-07-14 11:57:46 UTC
  • mfrom: (16.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20150714115746-e2iljfmb5sq7o5hh
Tags: 4.3.0-1
Move from experimental to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
demo1.c
4
4
 
5
 
Author: Sandro Furieri a-furieri@lqt.it
 
5
Author: Sandro Furieri a.furieri@lqt.it
6
6
 
7
7
This software is provided 'as-is', without any express or implied
8
8
warranty.  In no event will the author be held liable for any
362
362
          free (p_geotables[i]);
363
363
      }
364
364
    free (p_geotables);
 
365
    spatialite_shutdown();
365
366
    return 0;
366
367
 
367
368
  abort:
380
381
            }
381
382
          free (p_geotables);
382
383
      }
 
384
    spatialite_shutdown();
383
385
    return -1;
384
386
}