summaryrefslogtreecommitdiffstats
path: root/parse-xml.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2012-09-18 19:51:48 -0400
committerGravatar Dirk Hohndel <dirk@hohndel.org>2012-09-18 20:25:45 -0400
commitd14932058f191de2a812a9b3b9ad87c5febd2b3e (patch)
treea903417419c3bb80a8dde5b6b708bda5bf567a38 /parse-xml.c
parentf73e5b726808675ec3a02fe57f063b666e0706ac (diff)
downloadsubsurface-d14932058f191de2a812a9b3b9ad87c5febd2b3e.tar.gz
Fix some of the problems reported by cppcheck
Thanks to Christian for running the static code analysis tool against subsurface... There were some false positives, a few style issues that I'll ignore for now, and two actual potential bugs. First: Don't check unsigned variables for < 0 This has been around for a while and we are lucky that while technically a bug it still works as expected. Passing a negative idx simply turns it into a very large unsigned integer which then fails the > dive_table.nr test. So it still gets a NULL returned. A bug? Yes. Critical? No. Mismatched allocation and free This is an actual bug that potentially could cause issues. We allocate memory with malloc and free it with g_free. Not good. Reported-by: Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'parse-xml.c')
0 files changed, 0 insertions, 0 deletions