On Sun, Sep 25, 2016 at 10:12 AM, Nayan Deshmukh <[email protected]> wrote: > CovID: 1373370 > > Signed-off-by: Nayan Deshmukh <[email protected]> > --- > src/intel/tools/disasm.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/src/intel/tools/disasm.c b/src/intel/tools/disasm.c > index e527615..a747a0a 100644 > --- a/src/intel/tools/disasm.c > +++ b/src/intel/tools/disasm.c > @@ -101,8 +101,10 @@ gen_disasm_create(int pciid) > if (gd == NULL) > return NULL; > > - if (!gen_get_device_info(pciid, &gd->devinfo)) > - return NULL; > + if (!gen_get_device_info(pciid, &gd->devinfo)) { > + free(gd); > + return NULL;
Indentation is to 3 in this file, not 4. > + } > > brw_init_compaction_tables(&gd->devinfo); > > -- > 2.7.4 > > _______________________________________________ > mesa-dev mailing list > [email protected] > https://lists.freedesktop.org/mailman/listinfo/mesa-dev _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
