eyalroz / ssb-dbgen

Star Schema Benchmark data set generator (dbgen) - unified repository

Home Page:http://www.cs.umb.edu/~poneil/StarSchemaB.PDF

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Code uses gets() rather than fgets()

eyalroz opened this issue · comments

gets() is a dangerous function wish should never be used (it assumes the buffer passed is of infinite length) - and yet the original code uses it. Let's switch to fgets() - and check the return value to be extra safe.