1. 06 3月, 2011 2 次提交
    • Jeff Lenk's avatar
      fix vs2008 x64 build · 53e867bc
      Jeff Lenk 提交于
      53e867bc
    • Stefan Knoblich's avatar
      [FreeTDM] Fix segfault in ftdm_analog_configure_span() on startup. · 02b29263
      Stefan Knoblich 提交于
      Using ftdm_log_chan() in ftdm_analog_configure_span() is a bad idea,
      since the span won't have any channels assigned.
      
      This bug powered by declaring all variables at the top of the function,
      even if they are used in an if branch at the end.
      
      A C99'ish:
      
      	if (callwaiting) {
      		for (unsigned int i = 1; i <= span->span->chan_count; i++) {
      			/* ... */
      		}
      	}
      
      would have alerted the developer adding the log statement.
      But since we can't have nice things (thanks MSVC for not supporting C99!)
      </rant>
      Signed-off-by: 's avatarStefan Knoblich <s.knoblich@axsentis.de>
      02b29263
  2. 05 3月, 2011 1 次提交
  3. 04 3月, 2011 6 次提交
  4. 03 3月, 2011 18 次提交
  5. 02 3月, 2011 2 次提交
  6. 01 3月, 2011 4 次提交
  7. 28 2月, 2011 7 次提交