// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: debsrcrecords.cc,v 1.4 2001/02/20 07:03:17 jgg Exp $
+// $Id: debsrcrecords.cc,v 1.6 2004/03/17 05:58:54 mdz Exp $
/* ######################################################################
Debian Source Package Records - Parser implementation for Debian style
{
// This should use Start/Stop too, it is supposed to be efficient after all.
string Bins = Sect.FindS("Binary");
- if (Bins.empty() == true || Bins.length() >= sizeof(Buffer))
+ if (Bins.empty() == true || Bins.length() >= 102400)
return 0;
- strcpy(Buffer,Bins.c_str());
- if (TokSplitString(',',Buffer,StaticBinList,
+ // Workaround for #236688. Only allocate a new buffer if the field
+ // is large, to avoid a performance penalty
+ char *BigBuf = NULL;
+ char *Buf;
+ if (Bins.length() > sizeof(Buffer))
+ {
+ BigBuf = new char[Bins.length()];
+ Buf = BigBuf;
+ }
+ else
+ {
+ Buf = Buffer;
+ }
+
+ strcpy(Buf,Bins.c_str());
+ if (TokSplitString(',',Buf,StaticBinList,
sizeof(StaticBinList)/sizeof(StaticBinList[0])) == false)
+ {
+ if (BigBuf != NULL)
+ delete BigBuf;
return 0;
+ }
+
+ if (BigBuf != NULL)
+ delete BigBuf;
return (const char **)StaticBinList;
}
/*}}}*/
package/version records representing the build dependency. The returned
array need not be freed and will be reused by the next call to this
function */
-bool debSrcRecordParser::BuildDepends(vector<pkgSrcRecords::Parser::BuildDepRec> &BuildDeps)
+bool debSrcRecordParser::BuildDepends(vector<pkgSrcRecords::Parser::BuildDepRec> &BuildDeps, bool ArchOnly)
{
unsigned int I;
const char *Start, *Stop;
for (I = 0; I < 4; I++)
{
+ if (ArchOnly && (I == 1 || I == 3))
+ continue;
+
if (Sect.Find(fields[I], Start, Stop) == false)
continue;