16 Nov
2022
16 Nov
'22
8:22 p.m.
Matteo Bruni (@Mystral) commented about dlls/d3dcompiler_43/compiler.c:
ID3DInclude_Close(iface, code->code); }
+static const char *get_line(const char **ptr) +{ + const char *p, *q; + + p = *ptr; + if (!(q = strstr(p, "\n"))) + { + if (!*p) return NULL;
Nitpick: could you put the return on its own line? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1340#note_16055