mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-07 06:14:02 +00:00
fix a minor bug in ipc/shim_ipc_nsimpl.h
This commit is contained in:
committed by
Don Porter
parent
a3fcfab658
commit
c0e5a761f2
@@ -362,7 +362,7 @@ int CONCAT3(add, NS, subrange) (IDTYPE idx, IDTYPE owner,
|
||||
goto failed;
|
||||
}
|
||||
|
||||
if ((err == __add_range(r, off, 0, NULL, 0)) < 0) {
|
||||
if ((err = __add_range(r, off, 0, NULL, 0)) < 0) {
|
||||
free(r);
|
||||
goto failed;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user