diff options
author | Thomas White <taw@physics.org> | 2019-07-19 11:50:18 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-07-19 11:50:18 +0200 |
commit | f427c39eed461a43a20c51d14410d7a4de0124b6 (patch) | |
tree | 881a8f72c14a17f89738a5680baf6209b36eaf6b /libcrystfel/src/stream.c | |
parent | de48fafbd54622ed64b9164d66fb6129bb74a252 (diff) |
Increase maximum geometry length from stream
It's already too small
Diffstat (limited to 'libcrystfel/src/stream.c')
-rw-r--r-- | libcrystfel/src/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrystfel/src/stream.c b/libcrystfel/src/stream.c index ed05d986..1c2294ea 100644 --- a/libcrystfel/src/stream.c +++ b/libcrystfel/src/stream.c @@ -1446,7 +1446,7 @@ static void read_geometry_file(Stream *st) int done = 0; size_t len = 0; int started = 0; - const size_t max_geom_len = 16*1024; + const size_t max_geom_len = 64*1024; st->geometry_file = malloc(max_geom_len); if ( st->geometry_file == NULL ) { |