Bug 92383 - egg/egg-asn1x.c:2222: bad function call ?
Summary: egg/egg-asn1x.c:2222: bad function call ?
Status: RESOLVED NOTOURBUG
Alias: None
Product: p11-glue
Classification: Unclassified
Component: p11-kit (show other bugs)
Version: unspecified
Hardware: Other All
: medium normal
Assignee: Stef Walter
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-10-10 12:08 UTC by dcb314
Modified: 2015-10-19 09:36 UTC (History)
0 users

See Also:
i915 platform:
i915 features:


Attachments

Description dcb314 2015-10-10 12:08:35 UTC
egg/egg-asn1x.c:2222:31: warning: ordered comparison of pointer with integer zero [-Wextra]

        *value = timegm (when);
        g_return_val_if_fail (*time >= 0, FALSE);

Maybe

        *value = timegm (when);
        g_return_val_if_fail (*value >= 0, FALSE);
Comment 1 Stef Walter 2015-10-19 09:33:55 UTC
Is this the wrong bugzilla? This file doesn't exist in p11-kit.
Comment 2 Stef Walter 2015-10-19 09:36:26 UTC
I found this code in gnome-keyring and gcr projects. Made the appropriate changes there. Thanks.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.