diff options
| author | Thomas Knudsen <busstoptaktik@users.noreply.github.com> | 2017-10-30 06:33:45 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-30 06:33:45 +0100 |
| commit | aa3492b9043dbd070b1069ba30f4b12bb6abc1dd (patch) | |
| tree | c28b9575b42379d73f385b8123f103d9e9b7ca0a /src | |
| parent | 0d0beff91ddfc2cc4d195a141524a139f3afb756 (diff) | |
| parent | f7f1d3e0fe966e76e8fab2048519e15bf2434c64 (diff) | |
| download | PROJ-aa3492b9043dbd070b1069ba30f4b12bb6abc1dd.tar.gz PROJ-aa3492b9043dbd070b1069ba30f4b12bb6abc1dd.zip | |
Merge pull request #635 from kbevers/pipeline-context
Make sure to use the same context for pipeline childs as for the parent
Diffstat (limited to 'src')
| -rw-r--r-- | src/PJ_pipeline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PJ_pipeline.c b/src/PJ_pipeline.c index f1411cb4..b60105bf 100644 --- a/src/PJ_pipeline.c +++ b/src/PJ_pipeline.c @@ -436,7 +436,7 @@ PJ *PROJECTION(pipeline) { for (j = 1; j < current_argc; j++) proj_log_trace (P, " %s", current_argv[j]); - next_step = pj_init (current_argc, current_argv); + next_step = pj_init_ctx (P->ctx, current_argc, current_argv); proj_log_trace (P, "Pipeline: Step %d at %p", i, next_step); if (0==next_step) { proj_log_error (P, "Pipeline: Bad step definition: %s", current_argv[0]); |
