]> wimlib.net Git - wimlib/blobdiff - src/compress.c
wimlib_create_{de,}compressor(): Check ctype first
[wimlib] / src / compress.c
index 4c99dab145db7b04c5f6fb80f6207d6537b95179..efbd2085418f3685e8c0a52ec99c762d02e8b7ac 100644 (file)
@@ -111,15 +111,15 @@ wimlib_create_compressor(enum wimlib_compression_type ctype,
 {
        struct wimlib_compressor *c;
 
+       if (!compressor_ctype_valid(ctype))
+               return WIMLIB_ERR_INVALID_COMPRESSION_TYPE;
+
        if (c_ret == NULL)
                return WIMLIB_ERR_INVALID_PARAM;
 
        if (max_block_size == 0)
                return WIMLIB_ERR_INVALID_PARAM;
 
-       if (!compressor_ctype_valid(ctype))
-               return WIMLIB_ERR_INVALID_COMPRESSION_TYPE;
-
        c = MALLOC(sizeof(*c));
        if (c == NULL)
                return WIMLIB_ERR_NOMEM;