Merge pull request #120 from cgzones/null

Drop always true condition
main
Nathan Scott 6 years ago committed by GitHub
commit f6662f97fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      linux/Platform.c

@ -237,7 +237,7 @@ char* Platform_getProcessEnv(pid_t pid) {
if (fd) {
size_t capacity = 4096, size = 0, bytes;
env = xMalloc(capacity);
while (env && (bytes = fread(env+size, 1, capacity-size, fd)) > 0) {
while ((bytes = fread(env+size, 1, capacity-size, fd)) > 0) {
size += bytes;
capacity *= 2;
env = xRealloc(env, capacity);

Loading…
Cancel
Save