Kaydet (Commit) 6149c5c8 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-fsanitize=nonnull-attribute

Change-Id: Id214fb1f0decd4d39684a846c06ff97d8baa209d
üst 2b079c43
...@@ -295,7 +295,8 @@ void ...@@ -295,7 +295,8 @@ void
size_t nby; size_t nby;
nby = (char *) str->lp - (char *) str->bp; nby = (char *) str->lp - (char *) str->bp;
memmove(dtr->tp, str->bp, nby); if (nby)
memmove(dtr->tp, str->bp, nby);
} }
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment