Skip to Content.
Sympa Menu

svadev - [svadev] safecode: infinite loop with -fmemsafety

svadev AT lists.siebelschool.illinois.edu

Subject: Svadev mailing list

List archive

[svadev] safecode: infinite loop with -fmemsafety


Chronological Thread 
  • From: Matthew Wala <wala1 AT illinois.edu>
  • To: svadev AT cs.uiuc.edu
  • Subject: [svadev] safecode: infinite loop with -fmemsafety
  • Date: Fri, 8 Jun 2012 18:20:00 -0500
  • List-archive: <http://lists.cs.uiuc.edu/pipermail/svadev>
  • List-id: <svadev.cs.uiuc.edu>

Hi everyone:

While trying to get Apache to compile on Presto I am running into an
unusual error with clang on the below program which gets compiled by a
configure script. Running 'clang -S -fmemsafety' never finishes so it
looks it is going in an infinite loop.

John, I know you wanted me to try to compile Apache, but this issue is
getting in the way. Can anyone else reproduce this?

Matt


#define _GNU_SOURCE

#include <crypt.h>

int
main ()
{

struct crypt_data buffer;
crypt_r("passwd", "hash", &buffer);

;
return 0;
}




Archive powered by MHonArc 2.6.16.

Top of Page