mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-27 09:46:28 +00:00
tests/kms_flip: don't leak the CRTC
The kms_flip program calls kmstest_get_connector_config, which returns a struct containing some allocated variables, including a pointer to the CRTC. The problem is that we copy the values returned by this structure to the test_output struct, but we ignore the CRTC pointer. So free the CRTC pointer instead of leaking it. Caught by Valgrind. Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
This commit is contained in:
parent
02ad7e04dd
commit
056500bdc5
@ -921,6 +921,8 @@ static void connector_find_preferred_mode(uint32_t connector_id, int crtc_idx,
|
||||
|
||||
o->fb_width = o->kmode[0].hdisplay;
|
||||
o->fb_height = o->kmode[0].vdisplay;
|
||||
|
||||
drmModeFreeCrtc(config.crtc);
|
||||
}
|
||||
|
||||
static bool mode_compatible(const drmModeModeInfo *a, const drmModeModeInfo *b)
|
||||
@ -986,6 +988,9 @@ found:
|
||||
o->kencoder[1] = config[1].encoder;
|
||||
o->_crtc[1] = config[1].crtc->crtc_id;
|
||||
o->kmode[1] = *mode[1];
|
||||
|
||||
drmModeFreeCrtc(config[0].crtc);
|
||||
drmModeFreeCrtc(config[1].crtc);
|
||||
}
|
||||
|
||||
static void paint_flip_mode(struct kmstest_fb *fb, bool odd_frame)
|
||||
|
Loading…
x
Reference in New Issue
Block a user