This silences a false warning from gcc, where it doesn't recognize the type
of control flow occuring with the pre/post switches in the reference
conversion.
void *source_double_buf_alloc = NULL;
- void *source_double_buf;
+ void *source_double_buf = NULL;
void *rgba_double_buf_alloc = NULL;
- void *rgba_double_buf;
+ void *rgba_double_buf = NULL;
void *cmyka_double_buf_alloc = NULL;
- void *cmyka_double_buf;
+ void *cmyka_double_buf = NULL;
void *destination_double_buf_alloc = NULL;
void *destination_double_buf;
const void *type_double = babl_type_from_id (BABL_DOUBLE);