diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2016-12-22 07:36:52 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2016-12-22 07:36:52 +0000 |
commit | f4fe0f055e603295716e080f0841846a7d6d2be1 (patch) | |
tree | dca46c3d58f8d2ce73585d6351cec8129b56314b /Build/source | |
parent | 76f697da9a8fec6c015236eb228e0a2b23a213f9 (diff) |
mplibdir: sync with the upstream
git-svn-id: svn://tug.org/texlive/trunk@42771 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/texk/web2c/mplibdir/mp.w | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/mplibdir/mp.w b/Build/source/texk/web2c/mplibdir/mp.w index 7a4912ac7a1..82136d4f76c 100644 --- a/Build/source/texk/web2c/mplibdir/mp.w +++ b/Build/source/texk/web2c/mplibdir/mp.w @@ -1,4 +1,4 @@ -% $Id: mp.w 2107 2016-12-15 11:40:15Z luigi $ +% $Id: mp.w 2108 2016-12-21 09:21:34Z luigi $ % % This file is part of MetaPost; % the MetaPost program is in the public domain. @@ -2881,7 +2881,7 @@ void *do_alloc_node (MP mp, size_t size) { @c void mp_xfree (void *x) { - if (x != NULL) + if (x != NULL) free (x); } void *mp_xrealloc (MP mp, void *p, size_t nmem, size_t size) { |