mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 12:35:17 +00:00
util: Remove NONNULL(1) for virBitmapParseUnlimited
The code checks and handles a NULL 'str', so just remove the NONNULL. Update the error message to add the NULLSTR() around 'str' also. Signed-off-by: John Ferlan <jferlan@redhat.com>
This commit is contained in:
parent
9f66e09bc5
commit
fecc6ed090
@ -647,7 +647,7 @@ virBitmapParseUnlimited(const char *str)
|
||||
|
||||
error:
|
||||
virReportError(VIR_ERR_INVALID_ARG,
|
||||
_("Failed to parse bitmap '%s'"), str);
|
||||
_("Failed to parse bitmap '%s'"), NULLSTR(str));
|
||||
virBitmapFree(bitmap);
|
||||
return NULL;
|
||||
}
|
||||
|
@ -95,8 +95,7 @@ virBitmapParseSeparator(const char *str,
|
||||
virBitmapPtr *bitmap,
|
||||
size_t bitmapSize);
|
||||
virBitmapPtr
|
||||
virBitmapParseUnlimited(const char *str)
|
||||
ATTRIBUTE_NONNULL(1);
|
||||
virBitmapParseUnlimited(const char *str);
|
||||
|
||||
virBitmapPtr virBitmapNewCopy(virBitmapPtr src) ATTRIBUTE_NONNULL(1);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user