After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 769156 - Program returns random data in a function: no-return-in-nonvoid-function calendar-server/gnome-shell-calendar-server.c:446
Program returns random data in a function: no-return-in-nonvoid-function cale...
Status: RESOLVED FIXED
Product: gnome-shell
Classification: Core
Component: calendar
3.21.x
Other Linux
: Normal normal
: ---
Assigned To: gnome-shell-maint
gnome-shell-maint
: 769157 769158 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2016-07-25 16:39 UTC by Bjørn Lie
Modified: 2016-07-25 16:55 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
calendar-server: Add back missing return value (1.08 KB, patch)
2016-07-25 16:55 UTC, Florian Müllner
committed Details | Review

Description Bjørn Lie 2016-07-25 16:39:29 UTC
Build fails in post build checker.
This is new in 3.21.4 - built fine in .3

[  215s] ... checking for files with abuild user/group
[  215s] ... running 00-check-install-rpms
[  215s] ... installing all built rpms
[  215s] Preparing packages...
[  215s] gnome-shell-3.21.4-439.1.x86_64
[  215s] gnome-shell-lang-3.21.4-439.1.noarch
[  215s] gnome-shell-browser-plugin-3.21.4-439.1.x86_64
[  215s] gnome-shell-calendar-3.21.4-439.1.x86_64
[  215s] gnome-shell-devel-3.21.4-439.1.x86_64
[  215s] gnome-shell-browser-plugin-debuginfo-3.21.4-439.1.x86_64
[  215s] gnome-shell-calendar-debuginfo-3.21.4-439.1.x86_64
[  215s] gnome-shell-debuginfo-3.21.4-439.1.x86_64
[  215s] gnome-shell-debugsource-3.21.4-439.1.x86_64
[  216s] ... running 01-check-debuginfo
[  216s] ... testing for empty debuginfo packages
[  216s] ... running 02-check-gcc-output
[  216s] ... testing for serious compiler warnings
[  216s]     (using /usr/lib/build/checks-data/check_gcc_output)
[  216s]     (using //.build.log)
[  216s] 
[  216s] I: Program returns random data in a function
[  216s] E: gnome-shell no-return-in-nonvoid-function calendar-server/gnome-shell-calendar-server.c:446
[  216s] 
[  216s] I: Program returns random data in a function
[  216s] E: gnome-shell no-return-in-nonvoid-function calendar-server/gnome-shell-calendar-server.c:446
[  216s] 
[  216s] lamb18 failed "build gnome-shell.spec" at Mon Jul 25 16:27:05 UTC 2016.
Comment 1 Florian Müllner 2016-07-25 16:44:06 UTC
*** Bug 769157 has been marked as a duplicate of this bug. ***
Comment 2 Florian Müllner 2016-07-25 16:44:27 UTC
*** Bug 769158 has been marked as a duplicate of this bug. ***
Comment 3 Florian Müllner 2016-07-25 16:55:24 UTC
The following fix has been pushed:
6e0e375 calendar-server: Add back missing return value
Comment 4 Florian Müllner 2016-07-25 16:55:32 UTC
Created attachment 332113 [details] [review]
calendar-server: Add back missing return value

In commit 7e0e224e0, when moving from e_cal_recur_generate_instances()
to e_cal_client_generate_instances(), the return value of the
ECalRecurInstanceFn callback was accidentally removed; add it
back.