dmstyle: Remove a not very useful macro.
The memory is already zeroed on allocation.
This commit is contained in:
parent
0ab95a1ec4
commit
4f2a92328e
|
@ -49,12 +49,6 @@ typedef struct {
|
||||||
} guid_info;
|
} guid_info;
|
||||||
|
|
||||||
/* used for initialising structs */
|
/* used for initialising structs */
|
||||||
#define DM_STRUCT_INIT(x) \
|
|
||||||
do { \
|
|
||||||
memset((x), 0, sizeof(*(x))); \
|
|
||||||
(x)->dwSize = sizeof(*x); \
|
|
||||||
} while (0)
|
|
||||||
|
|
||||||
#define FE(x) { x, #x }
|
#define FE(x) { x, #x }
|
||||||
#define GE(x) { &x, #x }
|
#define GE(x) { &x, #x }
|
||||||
|
|
||||||
|
|
|
@ -440,7 +440,7 @@ static HRESULT parse_part_ref_list(DMUS_PRIVATE_CHUNK *pChunk, IStream *pStm,
|
||||||
hr = IStream_Read (pStm, &pNewItem->part_ref, sizeof(DMUS_IO_PARTREF), NULL);
|
hr = IStream_Read (pStm, &pNewItem->part_ref, sizeof(DMUS_IO_PARTREF), NULL);
|
||||||
/*TRACE_(dmfile)(" - sizeof %lu\n", sizeof(DMUS_IO_PARTREF));*/
|
/*TRACE_(dmfile)(" - sizeof %lu\n", sizeof(DMUS_IO_PARTREF));*/
|
||||||
list_add_tail (&pNewMotif->Items, &pNewItem->entry);
|
list_add_tail (&pNewMotif->Items, &pNewItem->entry);
|
||||||
DM_STRUCT_INIT(&pNewItem->desc);
|
pNewItem->desc.dwSize = sizeof(pNewItem->desc);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case FOURCC_LIST: {
|
case FOURCC_LIST: {
|
||||||
|
@ -669,7 +669,7 @@ static HRESULT parse_pattern_list(IDirectMusicStyle8Impl *This, DMUS_PRIVATE_CHU
|
||||||
/** TODO trace pattern */
|
/** TODO trace pattern */
|
||||||
|
|
||||||
/** reset all data, as a new pattern begin */
|
/** reset all data, as a new pattern begin */
|
||||||
DM_STRUCT_INIT(&pNewMotif->desc);
|
pNewMotif->desc.dwSize = sizeof(pNewMotif->desc);
|
||||||
list_init (&pNewMotif->Items);
|
list_init (&pNewMotif->Items);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue