From a4afcf7f3c76d99fc0cd4c13245449649f249ecc Mon Sep 17 00:00:00 2001 From: "mostafah%oeone.com" Date: Wed, 3 Apr 2002 19:50:00 +0000 Subject: [PATCH] In GetSyncId() m_alarmunits was being checked instead of m_syncid. (Bug 135193) Fixed now. git-svn-id: svn://10.0.0.236/trunk@118027 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/calendar/libxpical/oeICalEventImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/calendar/libxpical/oeICalEventImpl.cpp b/mozilla/calendar/libxpical/oeICalEventImpl.cpp index d9570a9eb0c..7d6b2a644c5 100644 --- a/mozilla/calendar/libxpical/oeICalEventImpl.cpp +++ b/mozilla/calendar/libxpical/oeICalEventImpl.cpp @@ -397,7 +397,7 @@ NS_IMETHODIMP oeICalEventImpl::GetSyncId(char * *aRetVal) #ifdef ICAL_DEBUG_ALL printf( "GetSyncId()\n" ); #endif - if( m_alarmunits ) { + if( m_syncid ) { *aRetVal= (char*) nsMemory::Clone( m_syncid, strlen(m_syncid)+1); if( *aRetVal == nsnull ) return NS_ERROR_OUT_OF_MEMORY;