On Wed Jul 10 11:44:08 2024 +0000, Aida Jonikienė wrote:
If I move the `if` statement before the `ptr` assignment then NULL lParam won't be passed through (which doesn't match direct winproc call behavior)
Can't it be something like the following?
``` if (!str) ptr = NULL; else if (!(ptr = get_buffer( buffer, sizeof(buffer), len ))) break;
```