Closed sean-gilliam closed 1 year ago
This PR removes the do_disc(conn) function since all it did was call mysql_close(conn). This level of indirection isn't needed and obscures the intent of the calling function
do_disc(conn)
mysql_close(conn)
All references to this do_disc(conn) are replaced with mysql_close(conn).
This PR removes the
do_disc(conn)
function since all it did was callmysql_close(conn)
. This level of indirection isn't needed and obscures the intent of the calling functionAll references to this
do_disc(conn)
are replaced withmysql_close(conn)
.