mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-01 02:16:14 +01:00
gitypelib: Fix compiler warnings
These variables are unused. https://bugzilla.gnome.org/show_bug.cgi?id=665249
This commit is contained in:
parent
fd0625aa6e
commit
cfcbd719ea
20
gitypelib.c
20
gitypelib.c
@ -645,12 +645,9 @@ validate_error_type_blob (GITypelib *typelib,
|
|||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
ErrorTypeBlob *blob;
|
ErrorTypeBlob *blob;
|
||||||
Header *header;
|
|
||||||
|
|
||||||
blob = (ErrorTypeBlob*)&typelib->data[offset];
|
blob = (ErrorTypeBlob*)&typelib->data[offset];
|
||||||
|
|
||||||
header = (Header *)typelib->data;
|
|
||||||
|
|
||||||
if (!blob->pointer)
|
if (!blob->pointer)
|
||||||
{
|
{
|
||||||
g_set_error (error,
|
g_set_error (error,
|
||||||
@ -850,8 +847,6 @@ validate_function_blob (ValidateContext *ctx,
|
|||||||
{
|
{
|
||||||
GITypelib *typelib = ctx->typelib;
|
GITypelib *typelib = ctx->typelib;
|
||||||
FunctionBlob *blob;
|
FunctionBlob *blob;
|
||||||
SignatureBlob *sigblob;
|
|
||||||
gboolean is_method;
|
|
||||||
|
|
||||||
if (typelib->len < offset + sizeof (FunctionBlob))
|
if (typelib->len < offset + sizeof (FunctionBlob))
|
||||||
{
|
{
|
||||||
@ -881,19 +876,6 @@ validate_function_blob (ValidateContext *ctx,
|
|||||||
if (!validate_name (typelib, "function symbol", typelib->data, blob->symbol, error))
|
if (!validate_name (typelib, "function symbol", typelib->data, blob->symbol, error))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
switch (container_type)
|
|
||||||
{
|
|
||||||
case BLOB_TYPE_BOXED:
|
|
||||||
case BLOB_TYPE_STRUCT:
|
|
||||||
case BLOB_TYPE_UNION:
|
|
||||||
case BLOB_TYPE_OBJECT:
|
|
||||||
case BLOB_TYPE_INTERFACE:
|
|
||||||
is_method = !(blob->constructor || blob->setter || blob->getter || blob->wraps_vfunc);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
is_method = FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (blob->constructor)
|
if (blob->constructor)
|
||||||
{
|
{
|
||||||
switch (container_type)
|
switch (container_type)
|
||||||
@ -946,8 +928,6 @@ validate_function_blob (ValidateContext *ctx,
|
|||||||
if (!validate_signature_blob (typelib, blob->signature, error))
|
if (!validate_signature_blob (typelib, blob->signature, error))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
sigblob = (SignatureBlob*) &typelib->data[blob->signature];
|
|
||||||
|
|
||||||
if (blob->constructor)
|
if (blob->constructor)
|
||||||
{
|
{
|
||||||
SimpleTypeBlob *simple = return_type_from_signature (typelib,
|
SimpleTypeBlob *simple = return_type_from_signature (typelib,
|
||||||
|
Loading…
Reference in New Issue
Block a user