mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 12:40:09 +01:00
i965_asm: avoid free()ing uninitialized pointers
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
This commit is contained in:
parent
51597eca84
commit
6c6af0c8b0
1 changed files with 1 additions and 1 deletions
|
|
@ -102,7 +102,7 @@ int main(int argc, char **argv)
|
|||
int offset = 0, err;
|
||||
int start_offset = 0;
|
||||
struct disasm_info *disasm_info;
|
||||
struct gen_device_info *devinfo;
|
||||
struct gen_device_info *devinfo = NULL;
|
||||
int result = EXIT_FAILURE;
|
||||
|
||||
const struct option i965_asm_opts[] = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue