aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/image.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2022-01-10 12:24:53 +0100
committerThomas White <taw@physics.org>2022-06-02 12:15:38 +0200
commitbe3595c63e5d310624f03be05cb2d2006c4963d2 (patch)
treeab936ffc8c8b8fb28ea2acf20388c92a83a4454e /libcrystfel/src/image.c
parent79f8df1c73f2cb2baab96750263bf99d89971691 (diff)
Generate placeholder filename/event earlier
Previously, a placeholder was put in the queue ("ZMQdata //" or "ASAPOdata //"), and replaced by image_read_data_block. Instead, the "final" placeholder can be put in the queue already. Note that ASAP::O, at least, will replace this placeholder with a filename delivered by the data transport.
Diffstat (limited to 'libcrystfel/src/image.c')
-rw-r--r--libcrystfel/src/image.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libcrystfel/src/image.c b/libcrystfel/src/image.c
index 2209ffee..1bad7d00 100644
--- a/libcrystfel/src/image.c
+++ b/libcrystfel/src/image.c
@@ -1391,7 +1391,6 @@ struct image *image_read_data_block(const DataTemplate *dtempl,
int no_mask_data)
{
struct image *image;
- char tmp[64];
if ( dtempl == NULL ) {
ERROR("NULL data template!\n");
@@ -1404,9 +1403,8 @@ struct image *image_read_data_block(const DataTemplate *dtempl,
return NULL;
}
- snprintf(tmp, 63, "datablock-%i", serial);
- image->filename = strdup(tmp);
- image->ev = strdup("//");
+ image->filename = NULL;
+ image->ev = NULL;
image->data_block = data_block;
image->data_block_size = data_block_size;