Bug #177 » 0038-objbind_get_modified_value-Return-NULL-and-not-FALSE.patch
| client/gui-gtk-3.22/editprop.c | ||
|---|---|---|
|
struct propstate *ps;
|
||
|
if (!ob || !op) {
|
||
|
return FALSE;
|
||
|
return NULL;
|
||
|
}
|
||
|
if (propstate_hash_lookup(ob->propstate_table, objprop_get_id(op), &ps)) {
|
||
| client/gui-gtk-4.0/editprop.c | ||
|---|---|---|
|
struct propstate *ps;
|
||
|
if (!ob || !op) {
|
||
|
return FALSE;
|
||
|
return NULL;
|
||
|
}
|
||
|
if (propstate_hash_lookup(ob->propstate_table, objprop_get_id(op), &ps)) {
|
||