this is a side effect of previous patch I made
on this same function in commit
a6ddef6149858df87cf7ab3c21e2fd34d14cc452
Signed-off-by: Michel Normand <normand@fr.ibm.com>
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
int lxc_cgroup_set(const char *name, const char *subsystem, const char *value)
{
- int fd, ret = -1;
+ int fd, ret;
char *nsgroup;
char path[MAXPATHLEN];
return -1;
}
- if (write(fd, value, strlen(value)) < 0) {
+ ret = write(fd, value, strlen(value));
+ if (ret < 0) {
ERROR("write %s : %s", path, strerror(errno));
goto out;
}