File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -67,12 +67,6 @@ static void oscap_action_release(struct oscap_action *action)
67
67
cvss_impact_free (action -> cvss_impact );
68
68
}
69
69
70
-
71
- static bool oscap_action_postprocess (struct oscap_action * action )
72
- {
73
- return true;
74
- }
75
-
76
70
static size_t paramlist_size (const char * * p ) { size_t s = 0 ; if (!p ) return s ; while (p [s ]) s += 2 ; return s ; }
77
71
78
72
static size_t paramlist_cpy (const char * * to , const char * * p ) {
@@ -267,9 +261,7 @@ int oscap_module_call(struct oscap_action *action)
267
261
assert (action -> module != NULL );
268
262
269
263
if (action -> module -> func ) {
270
- if (oscap_action_postprocess (action ))
271
- return action -> module -> func (action );
272
- else return OSCAP_ERR_FETCH ;
264
+ return action -> module -> func (action );
273
265
}
274
266
return OSCAP_UNIMPL_MOD ;
275
267
}
You can’t perform that action at this time.
0 commit comments