~ubuntu-branches/ubuntu/hardy/mysql-dfsg-5.0/hardy-updates

« back to all changes in this revision

Viewing changes to ndb/src/ndbapi/SignalSender.cpp

  • Committer: Bazaar Package Importer
  • Author(s): sean finney
  • Date: 2007-05-13 12:32:45 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20070513123245-8c3l187dk34cz2ar
Tags: 5.0.41-2
the previous "translation changes" inadvertently introduced unrelated
changes in the package control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
147
147
{
148
148
  SimpleSignal * s = t.check(m_jobBuffer);
149
149
  if(s != 0){
150
 
    m_usedBuffer.push_back(s);
 
150
    if (m_usedBuffer.push_back(s))
 
151
    {
 
152
      return 0;
 
153
    }
151
154
    return s;
152
155
  }
153
156
  
162
165
    
163
166
    SimpleSignal * s = t.check(m_jobBuffer);
164
167
    if(s != 0){
165
 
      m_usedBuffer.push_back(s);
 
168
      if (m_usedBuffer.push_back(s))
 
169
      {
 
170
        return 0;
 
171
      }
166
172
      return s;
167
173
    }
168
174