view src/alloc.h @ 14358:72d506d94f3f v8.1.0194

patch 8.1.0194: possibly use of NULL pointer commit https://github.com/vim/vim/commit/414998023fbff15cce20ef01a54d0366370ad8b6 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 18 06:02:09 2018 +0200 patch 8.1.0194: possibly use of NULL pointer Problem: Possibly use of NULL pointer. (Coverity) Solution: Reset the re_in_use flag earlier.
author Christian Brabandt <cb@256bit.org>
date Wed, 18 Jul 2018 06:15:04 +0200
parents 98274127d675
children c338c91086b9
line wrap: on
line source

/* vi:set ts=8 sts=4 sw=4 noet:
 *
 * VIM - Vi IMproved	by Bram Moolenaar
 *
 * Do ":help uganda"  in Vim to read copying and usage conditions.
 * Do ":help credits" in Vim to see a list of people who contributed.
 */

/*
 * alloc.h: enumeration of alloc IDs.
 * Each entry must be on exactly one line, GetAllocId() depends on that.
 */
typedef enum {
	aid_none = 0,
	aid_qf_dirname_start,
	aid_qf_dirname_now,
	aid_qf_namebuf,
	aid_qf_module,
	aid_qf_errmsg,
	aid_qf_pattern,
	aid_last
} alloc_id_T;