Tagged Questions

5
votes
1answer
414 views

Python: is os.read() / os.write() on an os.pipe() threadsafe?

Hello! Consider: pipe_read, pipe_write = os.pipe() Now, I would like to know two things: (1) I have two threads. If I guarantee that only one is reading os.read(pipe_read,n) and the other is only …
5
votes
4answers
2k views

What’s the right way to branch with Visual Source Safe?

What I currently do is I link the project to another location and give it the same name, then check the box where it says "Branch after share." And then I would Check out the shared project and work …
3
votes
8answers
150 views

How to safely write to a file?

Imagine you have a library for working with some sort of XML file or configuration file. The library reads the whole file into memory and provides methods for editing the content. When you are done …
3
votes
9answers
379 views

Is it safe to reuse pointers variables after freeing what they point to?

Is it safe and predictable to reuse pointers after freeing the data they point to? For example: char* fileNames[] = { "words.txt", "moreWords.txt" }; char** words = NULL; int* wordsCount = NULL; for …
2
votes
2answers
167 views

Thread safe char string in C

In C: If I have 3 threads, 2 threads that are appending strings to a global char string (char*), and 1 thread that is reading from that char string. Let's say that the 2 threads are appending about …
2
votes
2answers
81 views

java expression language that can’t access ‘unsafe’ java methods

I am working on a project where I will let users submit small 'scripts' to the server, and I will execute those scripts. There are many scripting languages which can be embedded into a Java program, …
2
votes
3answers
1k views

Is there a way of making strings file-path safe in c#?

My program will take arbitrary strings from the internet and use them for file names. Is there a simple way to remove the bad characters from these strings or do I need to write a custom function for …
1
vote
1answer
38 views

A SAFE way to pass an array or arrys[][] in C# to a DLL

I have an array of arrays that I want to pass into a DLL. I am running into the error "There is no marshaling support for nested arrays." I can pass a single array in fine but if I stack them up it …
1
vote
2answers
392 views

PHP echo vs PHP short tags

Are they equal in safeness? I was informed that using <?=$function_here?> was less safe, and that it slows down page load. So I am now strictly biased to using echo. I just wanted to know …
1
vote
3answers
145 views

Is there a truly safe formatting library for C?

Bearing in mind the answers given to a question about a safer formatting library for C, I'm wondering whether there is a safe C formatting library? What I mean is: there's no possibility to …
1
vote
3answers
116 views

Pattern for compile time discovery of unsafe/wrong queries

My team is developing a large java application which extensively queries a MySQL database (in different classes and modules). I'd like to known if there is a pattern that allows me to be notified at …
1
vote
1answer
97 views

$SAFE on ruby

I want to be able to run unstrusted ruby code. I want to be able to pass variables to said untrusted code that it may use. I also want said code to return a result to me. Here is a conceptual example …
0
votes
0answers
72 views

Visual Source Safe adding my local directory structure when project is checked in

Hello, I have a VB.net 2005 application in My Documents/Visual Studio.net 2005/Projects folder. When I Add the project to source safe it is adding it in a wierd folder structure like C:\documents …
0
votes
6answers
69 views

Is this fileuploading script safe?

Hi is this totally safe or not? I would like a totally safe fileuploading script for my new project. Thanks in advice. Here is the one i found: <?php if ((($_FILES["file"]["type"] == "image/gif") …

1 2 next
15 30 50 per page