From 5775d088ebb5f4c0eb10c016102b185b7953d0b5 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Tue, 3 May 2016 11:40:36 -0700 Subject: [PATCH] Get rid of the strdup for attribution --- tile-join.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tile-join.cpp b/tile-join.cpp index 50f0673..5111e0d 100644 --- a/tile-join.cpp +++ b/tile-join.cpp @@ -192,7 +192,7 @@ double max(double a, double b) { } } -void decode(char *fname, char *map, std::vector > &file_keys, std::vector &layernames, int *nlayers, sqlite3 *outdb, struct stats *st, std::vector &header, std::map > &mapping, std::set &exclude, int ifmatched, char **attribution) { +void decode(char *fname, char *map, std::vector > &file_keys, std::vector &layernames, int *nlayers, sqlite3 *outdb, struct stats *st, std::vector &header, std::map > &mapping, std::set &exclude, int ifmatched, std::string &attribution) { sqlite3 *db; if (sqlite3_open(fname, &db) != SQLITE_OK) { @@ -246,7 +246,7 @@ void decode(char *fname, char *map, std::vector > &fil } if (sqlite3_prepare_v2(db, "SELECT value from metadata where name = 'attribution'", -1, &stmt, NULL) == SQLITE_OK) { if (sqlite3_step(stmt) == SQLITE_ROW) { - *attribution = strdup((char *) sqlite3_column_text(stmt, 0)); + attribution = std::string((char *) sqlite3_column_text(stmt, 0)); } sqlite3_finalize(stmt); } @@ -413,13 +413,13 @@ int main(int argc, char **argv) { std::vector > file_keys; std::vector layernames; int nlayers = 0; - char *attribution = NULL; + std::string attribution; for (i = optind; i < argc; i++) { - decode(argv[i], csv, file_keys, layernames, &nlayers, outdb, &st, header, mapping, exclude, ifmatched, &attribution); + decode(argv[i], csv, file_keys, layernames, &nlayers, outdb, &st, header, mapping, exclude, ifmatched, attribution); } - mbtiles_write_metadata(outdb, outfile, layernames, st.minzoom, st.maxzoom, st.minlat, st.minlon, st.maxlat, st.maxlon, st.midlat, st.midlon, file_keys, nlayers, 0, attribution); + mbtiles_write_metadata(outdb, outfile, layernames, st.minzoom, st.maxzoom, st.minlat, st.minlon, st.maxlat, st.maxlon, st.midlat, st.midlon, file_keys, nlayers, 0, attribution.size() != 0 ? attribution.c_str() : NULL); mbtiles_close(outdb, argv); return 0;