aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-04-14 20:23:13 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-04-14 20:23:13 +0800
commit760c438e670e4ebe01c5431779628ed3a3189b76 (patch)
tree1fc2830cd578cf29ffd446ad7aada8694b97b57a /modules/mail
parent0b07e836c2aaf32c39fd4795a5f0ec6397b643ff (diff)
downloadgsoc2013-evolution-760c438e670e4ebe01c5431779628ed3a3189b76.tar
gsoc2013-evolution-760c438e670e4ebe01c5431779628ed3a3189b76.tar.gz
gsoc2013-evolution-760c438e670e4ebe01c5431779628ed3a3189b76.tar.bz2
gsoc2013-evolution-760c438e670e4ebe01c5431779628ed3a3189b76.tar.lz
gsoc2013-evolution-760c438e670e4ebe01c5431779628ed3a3189b76.tar.xz
gsoc2013-evolution-760c438e670e4ebe01c5431779628ed3a3189b76.tar.zst
gsoc2013-evolution-760c438e670e4ebe01c5431779628ed3a3189b76.zip
Bug 647698 - Selected calendar doesnt authenticate after offline/online
When I wrote e_load_cal_source_async() it didn't occur to me that a calendar backend may emit "auth-required" after the initial connection attempt. And because I was passing the allocated context data for the asynchronous load operation to e_cal_set_auth_func(), meaning the data gets freed at the end of the load operation, I was then calling e_cal_set_auth_func(cal, NULL, NULL) after the initial authentication was complete so that the ECal would not try to access the freed context data after the load operation finished. But that turned out to break the case of switching to offline mode, then back to online mode. Most calendar backends need to re-authenticate when they come back online. This commit instead passes data to the authentication function by way of g_object_set_data_full() so that the authentication function can be left in place for the duration of the ECal instance. Note that e_cal_set_auth_func() lacks a GDestroyNotify argument for the user data passed to it, which rules out passing any kind of allocated data structure. This is an API design flaw, in my opinion. But g_object_set_data_full() *does* take a GDestroyNotify argument.
Diffstat (limited to 'modules/mail')
0 files changed, 0 insertions, 0 deletions