diff options
Diffstat (limited to 'w32/subproc/misc.c')
-rw-r--r-- | w32/subproc/misc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/w32/subproc/misc.c b/w32/subproc/misc.c index 298db48..6759c17 100644 --- a/w32/subproc/misc.c +++ b/w32/subproc/misc.c @@ -15,6 +15,7 @@ A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <config.h> #include <stddef.h> #include <stdlib.h> #include <string.h> @@ -77,6 +78,6 @@ arr2envblk(char **arr, char **envblk_out) arrcnt++; } - free(tmp); + free(tmp); return TRUE; } |