Lines Matching refs:pointer

337 |v:beval_winid|		Window ID of the window where the mouse pointer is
508 Solution: Refresh stale pointer. (James McCoy)
691 Problem: MS-Windows: The mouse pointer flickers when going from command
807 Solution: Don't increment pointer when already at the NUL. (Christian
1385 Problem: Compiler warning for pointer type.
1529 Problem: Warning for type-punned pointer. (Tony Mechelynck)
2208 Problem: Compiler warning for int to pointer of different size when DEBUG
2360 Solution: Check for a pointer to be NULL. (Christian Brabandt)
2377 Solution: Check for the window pointer being valid. Postpone freeing the
2604 Solution: Add an index instead of relying on the pointer to remain the same.
2800 Problem: Advancing pointer over end of a string.
3459 Solution: Store a pointer to the end, instead of calling strlen() every
3704 Solution: Check for NULL pointer. (Yukihiro Nakadaira)
4193 Problem: Possible NULL pointer dereference.
4380 Problem: Compiler warnings for pointer mismatch.
4432 Solution: Compute the pointer offset with mb_head_off(). (Yasuhiro
4757 Problem: Overflow when adding MAXCOL to a pointer.
4818 next pointer block.
4845 Solution: Use a pointer argument. (Chris Hall)
5253 Solution: Set pointer to NULL. (Dominique Pelle)
5318 Problem: Gcc sanitizer complains about using a NULL pointer to memmove().
5889 Problem: Compiler complains about type punned pointer.
6032 Solution: Add safety check for NULL pointer. Check mouse position for valid
7281 Solution: Check for NULL pointer. Add a test.
7404 Problem: Coverity warns for NULL pointer and ignoring return value.
7405 Solution: Check for NULL pointer. When dict_add() returns FAIL free the item.
9100 Solution: Fix pointer name.
9215 Problem: Coverity reported possible use of NULL pointer when using buffer
10356 Solution: Check for NULL pointer. (Dominique) Add a test.
10834 Problem: Coverity: missing check for NULL pointer.
11312 Solution: Free memory before overwriting the pointer. (hint by Justin Keyes)
11755 Problem: Netbeans uses uninitialized pointer and freed memory.
11865 Problem: Overwriting pointer argument.
12039 Solution: Check for NULL pointer result from FormatMessage(). (Christian
12964 Solution: Don't let the pointer be NULL.
13837 Problem: Coverity complains about null pointer check.
14669 Solution: Cast the pointer to long or int. (closes #1060)
15124 Solution: Reset pointer when freeing 'errorformat'. (Dominique Pelle)
15445 Problem: Null pointer access reported by UBsan.
15566 Problem: When sorting zero elements a NULL pointer is passed to qsort(),
15590 Problem: Using a NULL pointer when using feedkeys() to trigger drawing a
15736 Problem: Ubsan warns for using a pointer that is not aligned.
15926 Problem: When a Cscope line contains CTRL-L a NULL pointer may be used.
15933 NULL pointer. (Coverity)
15934 Solution: Check for a NULL pointer.
16115 Problem: Compiler warnings for int to pointer conversion.
16478 Solution: Correct pointer computation. (Dominique Pelle, closes #1442)
17692 Problem: Coverity complains about possible NULL pointer.
17801 Problem: Using a function pointer instead of the actual function, which we
18559 Problem: Possible use of NULL pointer if buflist_new() returns NULL.
18561 Solution: Check for NULL pointer in set_bufref().
18738 Solution: Get the parent frame pointer earlier.
18927 Solution: Check that the window pointer is still valid. (Christian Brabandt,
18971 Solution: Also set the w_s pointer if w_buffer was NULL.
19691 Problem: Coverity: may dereference NULL pointer.
19869 Problem: NULL pointer access when term_free_vterm called twice.
19953 pointer is on another window does not work. Same for focus in a
19954 non-terminal window and the mouse pointer is over a terminal
20588 Problem: Unnecessary check for NULL pointer.
20617 Problem: Warning from Covscan about using NULL pointer.
21058 Problem: Coverity warns for NULL check and using variable pointer as an
21090 Solution: Fix pointer computation. (closes #2008)
21209 Solution: Use the highlight table directly, don't keep a pointer.
23376 Problem: Using pointer before it is set.
23402 Solution: Adjust the pointer in the parent frame. (Christian Brabandt,
23619 Problem: Clearing a pointer takes two lines.
23620 Solution: Add vim_clear() to free and clear the pointer.
23711 Problem: Clearing a pointer takes two lines.
23747 Problem: Possible NULL pointer dereference. (Coverity)
23748 Solution: Check for the pointer not being NULL.
23763 Solution: Keep allocated memory in separate pointer. Avoid outputting the
23816 Problem: Warning for possibly using NULL pointer. (Coverity)
23817 Solution: Skip using the pointer if it's NULL.
23847 Solution: Get a pointer to the right line.
24479 Problem: Possible NULL pointer dereference. (Coverity)
24480 Solution: Reverse the check for a NULL pointer.
24671 Problem: Warnings for conversion of void to function pointer.
24672 Solution: Use a temp variable that is a function pointer.
25661 Problem: Might use NULL pointer when out of memory. (Coverity)
25662 Solution: Handle NULL pointer better.
27040 Problem: Warning for passing pointer to non-pointer argument.
27125 Problem: Possibly use of NULL pointer. (Coverity)
27184 Solution: Pass pointer limit. Add a test. (closes #3241)
27391 Problem: Insert mode completion may use an invalid buffer pointer. (Akib
28248 Problem: Coverity complains about possible NULL pointer use.
28358 Problem: Quickfix code mixes using the stack and a list pointer.
28359 Solution: Use a list pointer in more places. (Yegappan Lakshmanan,
28568 Problem: Unnecessary check for NULL pointer.
28714 Solution: Use a qf_list_T pointer. (Yegappan Lakshmanan)
28887 Solution: Pass tomatch pointer instead of value. (Yegappan Lakshmanan)
29139 Solution: Free pointer when allocation fails. Change "boff" to "loff".
29689 Problem: Coverity complains about null pointer use.
29690 Solution: Avoid using a null pointer.
29745 Problem: Coverity warns for possible use of NULL pointer.
29784 Solution: Store the pointer in BalloonEval and free it later. (Yasuhiro
30348 Solution: Clear pointer after freeing memory. Decrement reference count
30440 Solution: Use correct pointer to failed expression.
31077 Solution: Use the job pointer.
31316 Problem: Compiler warning for adding to NULL pointer and a condition that
31318 Solution: Check for NULL pointer before adding. Remove useless "if".
31623 uninitialized buffer pointer. (Kuang-che Wu)
32132 Problem: May use NULL pointer when out of memory. (Coverity)
32137 Problem: May use NULL pointer when indexing a blob. (Coverity)
32147 Problem: Checking NULL pointer after addition. (Coverity)
32173 Solution: Pass a list pointer instead of info and index. (Yegappan
32208 Solution: Pass a list pointer to more functions. (Yegappan Lakshmanan,
33582 Problem: Comparing with pointer instead of value.
33606 Solution: Check that window pointer is still valid. (closes #4337)
34133 Solution: Put back the pointer when the '>' is not going to be displayed.
34168 Problem: Coverity complains about possibly using a NULL pointer and copying
34546 Problem: Using global pointer for tab-local popups is clumsy.
34547 Solution: Use the pointer in tabpage_T.
36214 Problem: Ubsan warns for possibly passing NULL pointer.
36538 Problem: Breaking out of loop by checking window pointer is insufficient.
36559 Problem: Coverity warns for possibly using a NULL pointer.
36560 Solution: Change the logic to make sure no NULL pointer is used.
36569 Problem: Coverity warns for possibly using a NULL pointer.
36570 Solution: Make sure no NULL pointer is used.
37436 Problem: May use NULL pointer when running out of memory.
37718 Problem: Coverity warns for using a NULL pointer.
37770 Problem: Using NULL pointer when out of memory.
37771 Solution: Bail out or skip the code using the pointer. (Zu-Ming Jiang,
37782 Solution: Check that backslash_halve_save() returns a different pointer.
38165 Problem: Using NULL pointer after an out-of-memory.
38166 Solution: Check for NULL pointer. (Dominique Pelle, closes #4881)
38268 Solution: Do not set the v:key type to string without clearing the pointer.
38296 Solution: Clear the pointer in prepare_vimvar(). (Ozaki Kiichi,
38330 Problem: Coverity warns for using pointer as array.
39219 Solution: Correct pointer name. (Marko Mahnič, closes #5006)
39255 Solution: Check for NULL pointer.
39748 Solution: Check the window pointer is still valid. (closes #5093)
40577 Problem: Possible NULL pointer dereference in popup_locate(). (Coverity)
40578 Solution: Check for NULL pointer.
40582 Problem: Error message for function arguments may use NULL pointer.
41016 Solution: Remove EX_TRLBAR and set nextcmd pointer.
41644 Solution: Check for NULL pointer. Also make ExpandGeneric() static.
41713 Problem: Use of NULL pointer when out of memory.
41714 Solution: Check for NULL pointer. (Dominique Pellé, closes #5449)
41726 Solution: Check for NULL pointer. (Yasuhiro Matsumoto, closes #5460)
41931 Solution: Check for NULL pointer.
41975 Problem: Coverity warning for possible use of NULL pointer.
42135 Problem: Coverity warning for using NULL pointer.
43567 Problem: Coverity complains about using NULL pointer.
44132 Solution: Do not keep a pointer to the dfunc_T for longer time.
44339 Solution: Avoid keeping a pointer to a freed blob object. (Dominique Pellé,
44819 Solution: Check the right pointer.
44890 Solution: Use a void pointer. (Dominique Pellé, closes #5958)
45083 Solution: Check for NULL pointer. Add more tests. (Yegappan Lakshmanan,
45209 Problem: using uninitialized pointer.
45369 Solution: Check for NULL pointer. (Nobuhiro Takasaki, closes #6027)
45592 Problem: Gcc warning for returning pointer to local variable. (John
45594 Solution: Return another pointer.
46264 Problem: def_function() may return pointer that was freed.
47599 Solution: Pass the getline function pointer to the eval() functions. Use it
47613 Solution: Keep a pointer to the continuation line in evalarg_T. Centralize
47850 Problem: Coverity warns for pointer computation.
47851 Solution: Avoid computing a pointer to invalid memory.
47855 Problem: May use NULL pointer when skipping over name.
47880 Problem: May use pointer after freeing it when text properties are used.
47928 Problem: Coverity warns for possible NULL pointer use.
48255 Solution: Put pointer back in evalarg instead of freeing it.
48310 Solution: Check for NULL pointer. (Dominique Pellé, closes #6432)
48787 Problem: Vim9: warning for pointer usage, test failure undetected.
48788 Solution: Fix pointer indirection. Give error when executing function
48832 Problem: Empty group in 'tabline' may cause using an invalid pointer.
48979 Solution: Use the pointer before it was advanced.
49069 Problem: Compiler warning for using size_t for int and void pointer.