Commit 57ac4a7a authored by Gerd Hoffmann's avatar Gerd Hoffmann
Browse files

fmops: fix off-by-one in AR_TABLE and DR_TABLE array size



Cc: P J P <ppandit@redhat.com>
Reported-by: default avatarWangjunqing <wangjunqing@huawei.com>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
Message-id: 20181030082340.17170-1-kraxel@redhat.com
Suggested-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
parent 5298f4d6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -72,8 +72,8 @@ typedef struct fm_opl_f {
	/* Rhythm sention */
	uint8_t rhythm;		/* Rhythm mode , key flag */
	/* time tables */
	int32_t AR_TABLE[75];	/* atttack rate tables */
	int32_t DR_TABLE[75];	/* decay rate tables   */
	int32_t AR_TABLE[76];	/* attack rate tables  */
	int32_t DR_TABLE[76];	/* decay rate tables   */
	uint32_t FN_TABLE[1024];  /* fnumber -> increment counter */
	/* LFO */
	int32_t *ams_table;