]> granicus.if.org Git - graphviz/commit
mm2gv SparseMatrix_import_matrix_market: use cgraph wrappers for allocation
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 28 Aug 2022 15:48:00 +0000 (08:48 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 30 Aug 2022 04:01:31 +0000 (21:01 -0700)
commit4f7c3700dea4588225ca3bd7b6f1a80ed6203aa0
treeccd60b6c5b8d4a272b1752436bad5d3a8080e305
parentcd969ee70e4fe2cafbe4da662f30710b64f42dc5
mm2gv SparseMatrix_import_matrix_market: use cgraph wrappers for allocation

The lib/cgraph/alloc.h wrappers are similar to the older lib/common/memory.h
wrappers except (1) they are header-only and (2) they live in a directory
(cgraph) that is at the root of the dependency tree. The long term plan is to
replace all use of lib/common/memory.h with lib/cgraph/alloc.h.

This change also fixes a number of unchecked allocation failures where `malloc`
was being called directly and the result was not checked.
cmd/tools/matrix_market.c