Make Aztec Code MSVC friendly again!

This commit is contained in:
hooper114 2009-07-16 15:24:46 +00:00
parent 4d42ba76b7
commit d877168b61

View File

@ -914,10 +914,10 @@ int aztec(struct zint_symbol *symbol, unsigned char source[])
} }
#ifndef _MSC_VER #ifndef _MSC_VER
unsigned int data_part[data_blocks], ecc_part[ecc_blocks]; unsigned int data_part[data_blocks + 3], ecc_part[ecc_blocks + 3];
#else #else
unsigned int* data_part = (unsigned int*)_alloca(data_blocks * sizeof(unsigned int)); unsigned int* data_part = (unsigned int*)_alloca((data_blocks + 3) * sizeof(unsigned int));
unsigned int* ecc_part = (unsigned int*)_alloca(ecc_blocks * sizeof(unsigned int)); unsigned int* ecc_part = (unsigned int*)_alloca((ecc_blocks + 3) * sizeof(unsigned int));
#endif #endif
/* Copy across data into separate integers */ /* Copy across data into separate integers */
memset(data_part,0,(data_blocks + 2)*sizeof(int)); memset(data_part,0,(data_blocks + 2)*sizeof(int));